开发者

How can I print $title1 $title2 $title3... using a for loop in PHP

开发者 https://www.devze.com 2023-04-02 01:27 出处:网络
I want to print these variables using a for loop: <?php $title1 = \"TEXT1\"; $title2 = \"TEXT2\"; $title3 = \"TEXT3\";

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
}
?>


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:

$varname = "title$i";
echo $$varname;

However, the more correct way to do this is to use an array, instead of ten different variables.

$titles = array(
    "TEXT1",
    "TEXT2",
    "TEXT3",
    "TEXT4",
    "TEXT5"
);

for ($i = 0; $i < count($titles) - 1; $i++) { // notice that we're starting at 0 instead of 1
    echo $title[$i];
}

This is faster, cleaner and can often be more secure.


You can wrap the string in {}. This tells PHP to use that string as a variable name.

for ($i = 1; $i <= 10; $i++) {  
  echo ${'title'.$i};
}
0

精彩评论

暂无评论...
验证码 换一张
取 消