gpt4 book ai didi

php - 动态访问 PHP 数组

转载 作者:可可西里 更新时间:2023-11-01 13:58:05 26 4
gpt4 key购买 nike

我尝试使用 $this->$arrDataName[$key] 访问数组 $this-> 中具有键 $key 的元素$arrDataName.但是 PHP 解释错误。

我在 $arrDataName$this->{$arrDataName}[$key] 周围用 { } 试过了,但是它不起作用。

在 php.net 上我找到了一个建议,但我无法实现。

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.

也许任何人都可以帮助我。

谢谢!

编辑:

我觉得不行,但是我忘了填充数组。
最后它起作用了。 :)
这是解决方案:$this->{$arrDataName}[$key]

最佳答案

你的语法是正确的:

$this->{$varName}[$key]

你也可以为此使用一个额外的变量:

$myTempArr = $this->$arrDataName;

$myTempArr[ $key ];

恕我直言,那样可读性更好...

关于php - 动态访问 PHP 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3235632/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com