如何在没有多个 __construct 函数的情况下在 PHP 中模拟多个构造函数?

Patricia Arquette
发布: 2024-11-19 18:13:03
原创
864 人浏览过

How to Simulate Multiple Constructors in PHP Without Multiple `__construct` Functions?

PHP 多个构造函数:探索替代方法

PHP 使用不同参数签名的多个构造函数的局限性给寻求使用不同参数签名来初始化对象的程序员带来了挑战不同的数据源。为了解决这个问题,我们深入研究了一种利用静态辅助方法的推荐方法。

我们不是定义多个 __construct 函数,而是定义一个初始化基本元素的基本构造函数。然后,我们创建名为 withID 和 withRow 的静态方法,它们采用特定参数并使用 loadByID 和 fill 等方法在内部填充对象的属性。

这是一个示例:

class Student
{
    public function __construct() {
        // Allocate common stuff
    }

    public static function withID(int $id) {
        $instance = new self();
        $instance->loadByID($id);
        return $instance;
    }

    public static function withRow(array $row) {
        $instance = new self();
        $instance->fill($row);
        return $instance;
    }

    protected function loadByID(int $id) {
        // Perform database query and fill instance properties
    }

    protected function fill(array $row) {
        // Populate properties from array
    }
}
登录后复制

使用这种方法,您可以根据特定信息初始化对象:

$student1 = Student::withID(123);
$student2 = Student::withRow(['id' => 456, 'name' => 'John Doe']);
登录后复制

此方法提供了一种结构化且灵活的方式来处理多个类似构造函数的功能,避免需要过于复杂的构造函数

以上是如何在没有多个 __construct 函数的情况下在 PHP 中模拟多个构造函数?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板