PHP:在类中声明函数签名标题?

发布于 2024-12-11 06:18:04 字数 361 浏览 0 评论 0原文

最佳实践 - 在 PHP 5.3+ 中,我们可以像 C++ 一样声明函数签名并将函数体放在其底部吗?如果是的话,如何制作?

示例:

<?php
class TheDoor
{
    public $args; // [...]
    private $fields; // [...]

    public function close();
    public function open();
    [...]
    public function close()
    {
        // Your code goes here
    }
}

提前谢谢您。

For Best Practices - In PHP 5.3+, can we, as for C++, declare function signares and put the bodies in the bottom of it ? If yes, how to make it ?

Example :

<?php
class TheDoor
{
    public $args; // [...]
    private $fields; // [...]

    public function close();
    public function open();
    [...]
    public function close()
    {
        // Your code goes here
    }
}

Thank you by advance.

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

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

发布评论

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

评论(1

爱殇璃 2024-12-18 06:18:05

没有。据我所知,您可以获得的最接近的方法是声明一个 接口 供班级实施。

Nope. The closest you can get, as far as I know, is declaring an interface for the class to implement.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文