__construct() 与 SameAsClassName() 用于 PHP 中的构造函数

2023-06-22php开发问题
3

本文介绍了__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 中的构造函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

PHP实现DeepL翻译API调用
DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以...
2025-08-20 php开发问题
168

PHP通过phpspreadsheet导入Excel日期数据处理方法
PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的...
2024-10-23 php开发问题
287

mediatemple - 无法使用 codeigniter 发送电子邮件
mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)...
2024-08-23 php开发问题
11

Laravel Gmail 配置错误
Laravel Gmail Configuration Error(Laravel Gmail 配置错误)...
2024-08-23 php开发问题
16

将 PHPMailer 用于 SMTP 的问题
Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)...
2024-08-23 php开发问题
4

关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题
Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)...
2024-08-23 php开发问题
17