<i id='SbGyA'><tr id='SbGyA'><dt id='SbGyA'><q id='SbGyA'><span id='SbGyA'><b id='SbGyA'><form id='SbGyA'><ins id='SbGyA'></ins><ul id='SbGyA'></ul><sub id='SbGyA'></sub></form><legend id='SbGyA'></legend><bdo id='SbGyA'><pre id='SbGyA'><center id='SbGyA'></center></pre></bdo></b><th id='SbGyA'></th></span></q></dt></tr></i><div id='SbGyA'><tfoot id='SbGyA'></tfoot><dl id='SbGyA'><fieldset id='SbGyA'></fieldset></dl></div>

    1. <small id='SbGyA'></small><noframes id='SbGyA'>

    2. <tfoot id='SbGyA'></tfoot>
        • <bdo id='SbGyA'></bdo><ul id='SbGyA'></ul>

      1. <legend id='SbGyA'><style id='SbGyA'><dir id='SbGyA'><q id='SbGyA'></q></dir></style></legend>

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

        __construct() vs SameAsClassName() for constructor in PHP(__construct() 与 SameAsClassName() 用于 PHP 中的构造函数)

        1. <small id='C9B4B'></small><noframes id='C9B4B'>

          <legend id='C9B4B'><style id='C9B4B'><dir id='C9B4B'><q id='C9B4B'></q></dir></style></legend>
          <tfoot id='C9B4B'></tfoot>
              <tbody id='C9B4B'></tbody>
              • <bdo id='C9B4B'></bdo><ul id='C9B4B'></ul>
                1. <i id='C9B4B'><tr id='C9B4B'><dt id='C9B4B'><q id='C9B4B'><span id='C9B4B'><b id='C9B4B'><form id='C9B4B'><ins id='C9B4B'></ins><ul id='C9B4B'></ul><sub id='C9B4B'></sub></form><legend id='C9B4B'></legend><bdo id='C9B4B'><pre id='C9B4B'><center id='C9B4B'></center></pre></bdo></b><th id='C9B4B'></th></span></q></dt></tr></i><div id='C9B4B'><tfoot id='C9B4B'></tfoot><dl id='C9B4B'><fieldset id='C9B4B'></fieldset></dl></div>
                  本文介绍了__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 中的构造函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
                  PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
                  mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                  Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                  Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                  Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)
                2. <i id='oOZ2W'><tr id='oOZ2W'><dt id='oOZ2W'><q id='oOZ2W'><span id='oOZ2W'><b id='oOZ2W'><form id='oOZ2W'><ins id='oOZ2W'></ins><ul id='oOZ2W'></ul><sub id='oOZ2W'></sub></form><legend id='oOZ2W'></legend><bdo id='oOZ2W'><pre id='oOZ2W'><center id='oOZ2W'></center></pre></bdo></b><th id='oOZ2W'></th></span></q></dt></tr></i><div id='oOZ2W'><tfoot id='oOZ2W'></tfoot><dl id='oOZ2W'><fieldset id='oOZ2W'></fieldset></dl></div>
                    <legend id='oOZ2W'><style id='oOZ2W'><dir id='oOZ2W'><q id='oOZ2W'></q></dir></style></legend>
                      <tbody id='oOZ2W'></tbody>
                      <tfoot id='oOZ2W'></tfoot>

                        <small id='oOZ2W'></small><noframes id='oOZ2W'>

                          <bdo id='oOZ2W'></bdo><ul id='oOZ2W'></ul>