在PHP中,是否有一种方法可以根据另一个因素来更改要更改的变量。例:

$str1 = "The string is 1";
$str2 = "The string is 2";
$str3 = "The string is 3";
$X = 3;
echo $strX;

>> "The string is 3."

编辑:谢谢那正是我所需要的:)

最佳答案

<?php
$str1 = "The string is 1";
$str2 = "The string is 2";
$str3 = "The string is 3";
$X = 3;
echo ${"str".$X};
?>

在这里阅读更多Variable variables

关于php - PHP-动态访问变量,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35395665/

10-16 13:34