如何访问 PHP 中此变量的内容?

How do I access the contents of this variable in PHP?

我正在使用一个库 XCRUD,它接受一个字符串参数并期望一个变量插值模式。这是它在文档中的使用方式,效果很好。

$xcrud->column_pattern('username','My name is {value}');

我想将此变量用作数组的键,但我不知道访问它需要什么语法。

我试过以下方法:

$xcrud->column_pattern('PlanNo', $myArray['{value}']);

$xcrud->column_pattern('PlanNo', $myArray[eval('{value}')]);

$xcrud->column_pattern('PlanNo', $myArray[${value}]);

我正在调用的库中的函数怎么可以通过{}访问变量?也许我期望它会存在于当前范围内是不合理的,它只是将该字符串传递到某个地方。

感谢您的帮助。 :)

试试这个

$xcrud->column_pattern('PlanNo', $myArray[eval("(" + value + ")")]);