gpt4 book ai didi

php从其他变量中获取变量名

转载 作者:行者123 更新时间:2023-12-02 06:44:05 25 4
gpt4 key购买 nike

请看这个简单的脚本

$c1 = $_GET[c1];
$c2 = $_GET[c2];
$c3 = $_GET[c3];
$c4 = $_GET[c4];
$c5 = $_GET[c5];
for($i = 1;$i <=5;$i++)
{
echo $c{$i};//or something else here :/
}

如何打印变量的值?

谢谢

最佳答案

可以看到on php.net可变页面中的一些很好的例子。阅读并查看示例。

此外,下面是您修复的代码片段,因此它可以工作:

<?php

$c1 = $_GET[c1];
$c2 = $_GET[c2];
$c3 = $_GET[c3];
$c4 = $_GET[c4];
$c5 = $_GET[c5];
for($i = 1;$i <=5;$i++)
{
echo ${"c".$i};
}

关于php从其他变量中获取变量名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3318111/

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