gpt4 book ai didi

php - 数组名称中的大括号变量,PHP

转载 作者:行者123 更新时间:2023-12-02 07:29:56 24 4
gpt4 key购买 nike

我知道这里有很多类似的问题,我想我已经全部阅读了。我的问题是我试图遍历数组列表并从每个数组中获取一个值。这些阵列是由第三方设置的,我无权配置接收它们的方式。这是我到目前为止所拥有的:

for ($i = 0; $i < $length; $i++) {

// Both of these work and return the value I need
echo $post->related_credits_0_related_show[0];
echo "{$post->related_credits_0_related_show[0]}"

// But none of these do, and I need to loop through a handful of arrays
echo "{$post->related_credits_{$i}_related_show[0]}";
echo "{$post->related_credits_${i}_related_show[0]}";
echo "{$post->related_credits_{${i}}_related_show[0]}";
echo "{$post->related_credits_".$i."_related_show[0]}";

}

我已经尝试了很多(很多!)更多我不会包括的组合。我也试过将 $i 转换为字符串。有一段时间我一直在反对这个问题。

提前感谢您的帮助。

最佳答案

这里需要使用可变变量。基本用法如下:

$var = 'Hello there!';
$foo = 'var';
echo $$foo;
^^--- note the double $-sign

这将输出:

Hello there!

除了$$foo,您还可以编写以下内容:

echo ${"$foo"};

如果变量名比较复杂,还可以这样做:

echo ${"some_stuff_{$foo}_more_stuff"};

在这种情况下,表示变量名称的字符串包含一个变量,并且该变量也包含在花括号内 ({})。这样做是为了避免常量、数组索引等问题。但如果您的用例不涉及任何这些,您不必担心。

对于您的具体问题,您可以使用以下内容:

for ($i=0; $i < $length; $i++) { 
$post->{"related_credits_{$i}_related_show"}[0];
}

或者,如果您更喜欢连接:

for ($i=0; $i < $length; $i++) { 
$res = $post->{'related_credits_'.$i.'_related_show'}[0];
}

参见 documentation on Variable Variables for more information .

关于php - 数组名称中的大括号变量,PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23012917/

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