gpt4 book ai didi

php - 在常量中添加变量

转载 作者:行者123 更新时间:2023-12-02 05:43:13 25 4
gpt4 key购买 nike

我在 View 中为我的错误消息使用常量,并且我希望能够在其中使用变量以便于管理。

我的大部分常量看起来像这样:

const SUCCESSFULLY_REGISTERED = "<p class='success'>Registration successful!.</p>";

我想做的是为 css 类使用一个变量,这样更容易在一个地方更改它们。这是我试过的:

const SUCCESSFULLY_REGISTERED = "<p class='$this->cssClassSuccess'>Registration successful!.</p><p>Log in with the username and password you registered with.</p>";

由于某种原因不起作用并引发以下错误消息。为什么会这样?如何才能以有效的方式做到这一点?

Parse error: syntax error, unexpected '"' in .../View/RegisterView.php on line 15

最佳答案

如果您定义常量,这是不可能的。

Manual: "The value must be a constant expression, not (for example) a variable, a property, a result of a mathematical operation, or a function call."

Constant Manual php.net
Constant Expression

关于php - 在常量中添加变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12804286/

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