Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
418 views
in Technique[技术] by (71.8m points)

thinkphp5中php类名与方法名相同,是怎样做到不报错的?

比如tp5中index类的index方法在php7中也不会报错,它是怎样做到的?

补充:
在没有__construct方法的类中创建与类名相同的方法,就会有这个提醒:

Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; index has a deprecated constructor

我在父类中添加了__contruct方法,但子类中如果没有,同样会出现类似的提醒。

已经解决:

经查资料和实践得出有三种情况:

1.一个类中如果同时存在__construct(非父类的)和与类名同名函数,则__construct是构造函数,而同名函数则当作普通函数;

2.如果一个子类的父类中有__construct(即使是public)但子类中没有,而子类中有同名函数,而同名函数是构造函数。
如果你用get_class_methods($this);获取类的方法会发现其实是有__construct方法的;

3.php官方手册中有这么一句话:

自 PHP 5.3.3 起,在命名空间中,与类名同名的方法不再作为构造函数。这一改变不影响不在命名空间中的类


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

与类名相同的方法名,就是构造方法。
php5之前是这样的,5之后,基本就是用的__construct()作为构造方法。所以,为什么会报错?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...