PHP:在类中声明函数签名标题?
最佳实践 - 在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有。据我所知,您可以获得的最接近的方法是声明一个 接口 供班级实施。
Nope. The closest you can get, as far as I know, is declaring an interface for the class to implement.