Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 PHP 5.3 > 我可以键入提示带有接口的对象吗?
像这样:
public function AddToFavorite(Trendmed\Interfaces\Favoriteable $entity) {}
还是我只限于检查函数内部的实现?我试过像上面那样输入提示,但它不起作用。
从手册:
PHP 5 引入了类型提示。函数现在可以强制参数为对象(通过在函数原型中指定类的名称)、接口、数组(自 PHP 5.1 起)或可调用(自 PHP 5.4 起)
所以它可以使用接口。