1 回答

TA貢獻(xiàn)1829條經(jīng)驗 獲得超4個贊
$$value['name'] 當(dāng) $value['name'] 的值為 email 時會給我 $email
沒有辦法做到這一點。您可以通過執(zhí)行以下操作來存儲它的值或?qū)υ搶ο蟮囊?/p>
$email = $value['value']; //this is a copied object
$email = &$value['value']; //this is a reference
編輯
你可以做
foreach ($data as $key => $value) {
echo $value['name'];
echo $value['value'];
$text = $value['name'];
$$text = $value['value'];
echo $email;
}
您無法從數(shù)組創(chuàng)建變量,因為您會將數(shù)組轉(zhuǎn)換為字符串。您必須創(chuàng)建一個字符串類型變量來幫助它。
foreach ($data as $key => $value) {
$text = $key;
$$text = $value;
echo $email;
}
- 1 回答
- 0 關(guān)注
- 131 瀏覽
添加回答
舉報