gpt4 book ai didi

PHP在字符串文字中动态引用变量

转载 作者:行者123 更新时间:2023-12-04 15:16:50 27 4
gpt4 key购买 nike

我在表单中有多个 PHP 变量

$number1, $number2, $number3 and so on...

我想在循环中动态引用这些变量以从中检索信息,但不确定如何动态引用静态变量。例如:

for($i = 1; $i <= 10; $i++) {
//The first number to be printed should be the value from
//$number1 not $number concatenated to $i

//here are some of the strings I tried:
echo "$number$i";
echo "{$number}$i";
echo "{$number}{$i}";
}

最佳答案

应该这样做:

echo ${"number{$i}"};

但为什么不使用数组呢? $number[$i] 更具可读性......

关于PHP在字符串文字中动态引用变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17203722/

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