dotxxh0998 2014-03-12 21:03
浏览 29
已采纳

防止在扩展类中使用类名作为构造函数

Check out this example:

class ParentClass {
    public function __construct() {
        // Does not prevent using 'SomeObject' as constructor
    }
}

class SomeObject extends ParentClass {
    function SomeObject () {
        // Should not use this as constructor
    }
}

$obj = new SomeObject();

How can I prevent for each extending class to use the class name as the constructor? I've tried to set an empty __construct, but it still calls the SomeObject-Method (what is actually logical).

Is there a way to disable it in the php.ini or in a similar way as I tried above? I googled about 2 hours but I couldn't find anything.

Greets

  • 写回答

1条回答 默认 最新

  • douhao9203 2014-03-12 21:16
    关注

    You can try making function SomeObject private:

    private function SomeObject()
    

    It is weird, though. According to the documentation the old style constructor should not be called at all when your class contains a __construct or when it descends from another class that has a __construct. So if you are really sure this happens, maybe you can file a bug report.

    [edit] As per request, I tested this locally on PHP 5.4.3. I can confirm that the old style constructor is indeed called. To my feeling this contradicts with this statement:

    For backwards compatibility, if PHP 5 cannot find a __construct() function for a given class, and the class did not inherit one from a parent class, it will search for the old-style constructor function, by the name of the class.

    In this case, the class does inherit a __construct() function, so PHP should not search for the old constructor.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀