如何从动态名称和动态var的数组中获取信息?
现在我尝试从名为array的数组中获取信息,该名称存储在$command[0]
中,其中var名称为$command[1]
。我的代码不会工作。
$replacement_iterations = substr_count($pre_body, '*|');
var_dump($replacement_iterations);
$iteration_count = 0;
while($replacement_iterations > $iteration_count) {
$command = explode(':', get_string_between($pre_body, "*|", "|*"));
$replace_body = '*|' . get_string_between($pre_body, "*|", "|*") . '|*';
$put_body = $command[0].'[' . $command[1] . ']';
var_dump($put_body);
$pre_body = str_replace($replace_body, $command, $pre_body);
var_dump($pre_body);
$iteration_count++;
}
答案 0 :(得分:0)
只需使用变量:
$myArray = ['a' => 'a', 'someVar' => 'samavar'];
$command = [
'myArray',
'someVar'
];
var_dump(
${$command[0]}[$command[1]]
);
// -> string(7) "samavar"