gpt4 book ai didi

PHP - 动态访问变量

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

在 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 - 动态访问变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35395665/

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