我正在寻找一个将数组元素设置为自变量(同名)的php函数
我写了下面的代码来解决问题... 在php中有没有已经执行过的功能?
$data = array(...);
foreach ($data as $key => $value) {
${$key} = $value;
}
答案 0 :(得分:0)
答案 1 :(得分:-1)
尝试
$info = array('coffee', 'brown', 'caffeine');
// Listing all the variables
list($drink, $color, $power) = $info;
echo "$drink is $color and $power makes it special.\n";
或
foreach($ARRAY as $key=>$value) {
$$key = $value;
}