我可以在 PHP 中使用两个构造函数吗?

发布于 2024-12-13 07:28:16 字数 119 浏览 2 评论 0原文

我有两个 php 文件: main.class.php 在这些文件中的form.class.php

有两个类与其文件名具有相同的名称,并且类表单从主类扩展 主类有一个构造函数 如何为类形式设置构造函数方法?

I have two php files:
main.class.php
form.class.php

in these files there are two class that have same name as their file name and class form extends from main class
main class has a constructor
How can I set a constructor method for class form?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

纸短情长 2024-12-20 07:28:16
class Main
{
    private $foo;

    public function __construct($foo)
    {
        $this->foo = $foo;
    }
}

class Form extends Main
{
    private $bar;

    public function __construct($foo, $bar)
    {
        parent::__construct($foo);
        $this->bar = $bar;
    }
}
class Main
{
    private $foo;

    public function __construct($foo)
    {
        $this->foo = $foo;
    }
}

class Form extends Main
{
    private $bar;

    public function __construct($foo, $bar)
    {
        parent::__construct($foo);
        $this->bar = $bar;
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文