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};//or something else here :/
}
我如何打印变量的值?
谢谢
look at this simple script please
$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 :/
}
how can i print tha values of variables?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
您可以在 php.net 上看到一些很好的示例在变量页面中。阅读该内容并查看示例。
另外,下面是您的代码片段,以便它可以工作:
You can see on php.net some good examples in the variable page. Read that and take a look at the examples.
Also, below is your piece of code fixed so it can work:
您应该使用数组而不是单个变量。
供参考:
You should use an array rather than individual variables.
For reference:
如果这些值密切相关,请考虑更改 HTML/表单中的名称属性。
HTML:
PHP:
If these values are closely related, consider changing their name attribute in your HTML/form.
HTML:
PHP:
这是一种更好的方法,使用数组而不是单个变量,这样更容易、更有效。
Here's a better way of doing it, using Arrays, rather than individual variables, which works easier and more efficiently.
也许 PHP 变量 就是您正在寻找的。
我将让您弄清楚如何为“i”构造正确的值。
Perhaps PHP variable variables is what you are looking for.
I'll leave it to you to figure out how to construct correct values for 'i'.
这应该可以工作..
即使这会打印出每个 $_GET。
This should work..
even though this prints out every $_GET.