在PHP函数的参数之前是什么常量

时间:2013-12-17 21:23:38

标签: php function kohana

我在Kohana用户指南中看到:http://kohanaframework.org/3.0/guide/kohana/mvc/controllers#custom-construct-function

自定义__construct()函数中,您可以在构造函数中看到如下的参数:

function __construct(Kohana_Request $request)

所以,我们在第一个参数Kohana_Request中有一个常量。请帮我理解它是什么。

由于

1 个答案:

答案 0 :(得分:6)

不是常数,它是类型提示:http://www.php.net/manual/en/language.oop5.typehinting.php

$request应为Kohana_Request对象类型。