gpt4 book ai didi

php - 连接两个变量

转载 作者:行者123 更新时间:2023-12-02 05:22:16 24 4
gpt4 key购买 nike

这是我正在尝试做的事情:

$errmsg_1 = 'Please make changes to your post';
$errmsg_2 = 'Please make changes to your post image';

$error = 1;

echo $errmsg_.$error; //'Please make changes to your post';

什么都行不通,而且有很多错误消息,我必须回显这些错误消息。

有人能帮忙吗?

最佳答案

您要求的是一个变量 -- 参见http://uk.php.net/manual/en/language.variables.variable.php了解更多信息。

但是请不要那样做;它被认为是非常糟糕的编码实践。

你真正需要的是一个数组:

$errmsg = array(
'Please make changes to your post', //this will be $errmsg[0]
'Please make changes to your post image' //this will be $errmsg[1]
);

$error = 0; //nb: arrays start at item number 0, not 1.

echo $errmsg[$error];

这比乱用可变变量要好得多。

关于php - 连接两个变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12427515/

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