gpt4 book ai didi

php - 在 PHP 的构造函数中初始化类常量

转载 作者:行者123 更新时间:2023-12-04 02:20:13 29 4
gpt4 key购买 nike

就像在 C++ 中一样,是否可以在构造函数中初始化类常量?

类似于 C++,它看起来像:

class Abc
{
const WIDTH;

public __constructor($width):WIDTH($width) //WIDTH gets assigned here and is immutable
{
//I know syntax may not be ok but is anything similar possible in PHP?
}

}

最佳答案

不,这在 PHP 中是不可能的。定义常量时必须定义常量的值,并且它必须是常量表达式。

不推荐:当然,如果runkit安装完毕,可以使用 runkit_constant_add() :

public function __construct($width)
{
runkit_constant_add(__CLASS__ . '::WIDTH', $width);
}

关于php - 在 PHP 的构造函数中初始化类常量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8579774/

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