__construct() vs SameAsClassName() for constructor in PHP(__construct() 与 SameAsClassName() 用于 PHP 中的构造函数)
问题描述
在 PHP 中使用 __construct()
代替类名对构造函数有什么好处吗?
Is there any advantage to using __construct()
instead of the class's name for a constructor in PHP?
示例(__construct
):
class Foo {
function __construct(){
//do stuff
}
}
示例(命名):
class Foo {
function Foo(){
//do stuff
}
}
从 PHP 5 开始就可以使用 __construct
方法(第一个示例).
Having the __construct
method (first example) is possible since PHP 5.
从 PHP 版本 4 到版本 7,可以使用与类同名的方法作为构造函数(第二个示例).
Having a method with the same name as the class as constructor (second example) is possible from PHP version 4 until version 7.
推荐答案
我同意 gizmo,优点是如果你重命名你的类,你就不必重命名它.干燥.
I agree with gizmo, the advantage is so you don't have to rename it if you rename your class. DRY.
同样,如果你有一个子类,你可以调用
Similarly, if you have a child class you can call
parent::__construct()
调用父构造函数.如果进一步更改子类继承的类,则不必更改对父类的构造调用.
to call the parent constructor. If further down the track you change the class the child class inherits from, you don't have to change the construct call to the parent.
这似乎是一件小事,但如果不将构造函数调用名称更改为您的父类可能会产生微妙的(而不是那么微妙的)错误.
It seems like a small thing, but missing changing the constructor call name to your parents classes could create subtle (and not so subtle) bugs.
例如,如果您将一个类插入到您的 heirachy 中,但忘记更改构造函数调用,您可以开始调用祖父母而不是父母的构造函数.这通常会导致可能难以注意到的不良结果.
For example, if you inserted a class into your heirachy, but forgot to change the constructor calls, you could started calling constructors of grandparents instead of parents. This could often cause undesirable results which might be difficult to notice.
还要注意
从 PHP 5.3.3 开始,与命名空间类名的最后一个元素同名的方法将不再被视为构造函数.此更改不会影响非命名空间类.
As of PHP 5.3.3, methods with the same name as the last element of a namespaced class name will no longer be treated as constructor. This change doesn't affect non-namespaced classes.
来源:http://php.net/manual/en/language.oop5.decon.php
这篇关于__construct() 与 SameAsClassName() 用于 PHP 中的构造函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:__construct() 与 SameAsClassName() 用于 PHP 中的构造函数
基础教程推荐
- PHP 守护进程/worker 环境 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01