标签: php class function
我刚刚在教程中看到了这个奇怪的东西,但无法弄清楚变量括号中的这个“注释”代表什么。你知道吗?
public function addComment(Comment $comment) { ..... }
欢呼声
答案 0 :(得分:8)
这意味着参数必须是类Comment的对象。如果传入的参数不是Comment对象,PHP将引发错误。
Comment
此功能称为“type hinting”。