dtotwai720621 2016-01-13 07:59
浏览 115
已采纳

php:使用字符串变量动态访问数组

Its like this

I have a variable that has an array index in it, for e.g.

$var = 'testVar["abc"][0]';

or

$var = 'testVar["xyz"][0]["abc"]';

or it could be anything at run time.

Now when I try to access this by using this php code:

echo $$var;

or

echo ${$var};

I get a warning saying Illegal offset at line ...

but if I use this code, it works

eval('echo $'.$var);

I do not want to use eval(). Is there any other way?

EDIT:

The variable $testVar is an array build up on runtime and it could have multi-dimensional array built dynamically. Its format is not fixed and only the script knows by the use of certain variables that what the array could be.

for e.g. at any point, the array might have an index $["xyz"][0]["abc"] which I want to access dynamically.

My php version is 5.1

  • 写回答

1条回答 默认 最新

  • douzhouqin6223 2016-01-13 08:10
    关注

    According to the documentation, what you are trying to accomplish is not possible:

    In order to use variable variables with arrays, you have to resolve an ambiguity problem. That is, if you write $$a[1] then the parser needs to know if you meant to use $a[1] as a variable, or if you wanted $$a as the variable and then the [1] index from that variable. The syntax for resolving this ambiguity is: ${$a[1]} for the first case and ${$a}[1] for the second.

    In your case, $$var tries to read a variable with the name testVar["xyz"][0]["abc"], and not indexing an array. You could dereference that array like this:

    $a = "testVar";
    echo ${$a}["xyz"][0]["abc"];
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容
  • ¥15 关于#stm32#的问题:CANOpen的PDO同步传输问题