我正在尝试在php中创建一个函数,它将3个字符串转换为多维数组中的元素。所以目前阵列是这样的:
`$testcart=[$testcamera = [
'name' => 'Sony camera',
'price' => 170
]
];
$phone = [
'name' => 'Lg g3',
'price' => 400
];'
我正在尝试通过表单添加此元素:
`$smartphone = [
'name' => 'HTC One',
'price' => 300
];`
所以用户输入'智能手机',htc one'和300.我创建了这个功能:
function newcreate_item($newitemvariable,$newitemname,$newitemprice) {
$newitem = "$" . $newitemvariable;
$newitem = [
'name' =>$newitemname,
'price' =>$newitemprice];
return $newitem;
}
但我似乎无法将字符串($ newitemvariable)转换为变量名称。任何帮助将不胜感激!
答案 0 :(得分:0)
除非风险很大且不专业,否则使用的正确功能是eval():
php -a
Interactive mode enabled
php > $str = '$testcart=[
php ' [
php ' \'name\' => \'Sony camera\',
php ' \'price\' => 170
php ' ],
php ' [
php ' \'name\' => \'Lg g3\',
php ' \'price\' => 400
php '
php ' ]];';
php > eval($str);
php > var_dump($testcart);
array(2) {
[0]=>
array(2) {
["name"]=>
string(11) "Sony camera"
["price"]=>
int(170)
}
[1]=>
array(2) {
["name"]=>
string(5) "Lg g3"
["price"]=>
int(400)
}
}
php >