这篇文章小编就为大家带来一篇浅谈Fatal error: Constructor _construct() cannot be static, _construct() cannot be static how to do。小编觉得挺不错的,现在就分享给大家,如果你在找php静态方法,Fatal error,php构造方法,也可以做个参照。一起跟随小编过来看看吧。
Fatal error: Constructor _construct() cannot be static, _construct() cannot be static how to do
作者:小程序教员 发布时间:2019-05-17
用php写一个类,
突然遇到下面的致使错误:
“Fatal error: Constructor _construct() cannot be static”
意思是构造方法不能是静态(static)的
解决方法就是把前面的 static 删除即可。
下面是一个例子
class Daqin {
public static function __construct() {
}
}
Fatal error: Constructor Daqin::__construct() cannot be static
把public static function __construct()改为public function __construct()即可
一些老版本的PHP构造方法与类名相同,
class Daqin {
public static function Daqin() {
}
}
也会出现Fatal error: Constructor _construct() cannot be static
delete static is ok
猛击这里,
观看子恒老师《php采集》系列视频
了解实现过程和下载相关源代码
声明:部分文章或图片未能及时与原作者取得联系,若来源标注错误或侵犯到您的权益烦请告知QQ:2334512685,我们会及时删除。
发布:秦子恒博客,欢迎转载分享,请保留出处。
Fatal error: Constructor _construct() cannot be static, _construct() cannot be static how to do链接:https://www.qinziheng.com/details/8339/
Fatal error: Constructor _construct() cannot be static, _construct() cannot be static how to do相关文章