“评论”代表什么“功能addComment(评论$评论)”

时间:2012-03-16 00:05:08

标签: php class function

我刚刚在教程中看到了这个奇怪的东西,但无法弄清楚变量括号中的这个“注释”代表什么。你知道吗?

public function addComment(Comment $comment) { ..... }

欢呼声

1 个答案:

答案 0 :(得分:8)

这意味着参数必须是类Comment的对象。如果传入的参数不是Comment对象,PHP将引发错误。

此功能称为“type hinting”。