如何将值用作数组中的变量?

时间:2019-01-21 23:15:17

标签: php arrays syntax

我想将值作为变量名传递给数组。

$array['variable']= "Product";
$result = $need->$array['variable'];

echo $need->Product;
echo $result; // should display same as above echo

$ result以及$ need-> Product的预期结果应该相同;

此代码在PHP 5.4上有效,但是现在我使用PHP 7.1

0 个答案:

没有答案