doujiekeyan0622 2011-12-20 17:56
浏览 193
已采纳

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

Just like in C++ is it possible to initialize class constant in the constructor?

Similar to C++ it'd look like:

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?
    }

}
  • 写回答

1条回答 默认 最新

  • dongxiane0395 2011-12-20 17:58
    关注

    No, this is not possible in PHP. A constant's value must be defined when you define the constant, and it must be a constant expression.

    Not recommended: Of course, if runkit is installed, you can use runkit_constant_add():

    public function __construct($width)
    {
        runkit_constant_add(__CLASS__ . '::WIDTH', $width);
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 滑块验证码移动速度不一致问题
  • ¥15 定制ai直播实时换脸软件
  • ¥100 栈回溯相关,模块加载后KiExceptionDispatch无法正常回溯了
  • ¥15 麒麟V10桌面版SP1如何配置bonding
  • ¥15 Marscode IDE 如何预览新建的 HTML 文件
  • ¥15 K8S部署二进制集群过程中calico一直报错
  • ¥15 java python或者任何一种编程语言复刻一个网页
  • ¥20 如何通过代码传输视频到亚马逊平台
  • ¥15 php查询mysql数据库并显示至下拉列表中
  • ¥15 freertos下使用外部中断失效