如何在 PHP 中使用 for 循环打印 $title1 $title2 $title3...
我想使用 for
循环打印这些变量:
<?php
$title1 = "TEXT1";
$title2 = "TEXT2";
$title3 = "TEXT3";
$title4 = "TEXT4";
$title5 = "TEXT5";
for ($i = 1; $i <= 10; $i++) {
echo "$title".$i; // I want this: TEXT1 TEXT2 TEXT3 TEXT4 TEXT5
}
?>
I want to print these variables using a for
loop:
<?php
$title1 = "TEXT1";
$title2 = "TEXT2";
$title3 = "TEXT3";
$title4 = "TEXT4";
$title5 = "TEXT5";
for ($i = 1; $i <= 10; $i++) {
echo "$title".$i; // I want this: TEXT1 TEXT2 TEXT3 TEXT4 TEXT5
}
?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要准确地执行您想要的操作,请创建一个包含要使用的变量名称的新变量,然后将其用作变量变量,如下所示:
但是,更正确的方法是使用数组,而不是十个不同的变量。
这更快、更干净,而且通常更安全。
To do exactly what you want, create a new variable containing the name of the variable you want to use, and then use it as a variable variable, like this:
However, the more correct way to do this is to use an array, instead of ten different variables.
This is faster, cleaner and can often be more secure.
您可以将字符串包装在
{}
中。这告诉 PHP 使用该字符串作为变量名。You can wrap the string in
{}
. This tells PHP to use that string as a variable name.