我在Kohana用户指南中看到:http://kohanaframework.org/3.0/guide/kohana/mvc/controllers#custom-construct-function
在自定义__construct()函数中,您可以在构造函数中看到如下的参数:
function __construct(Kohana_Request $request)
所以,我们在第一个参数Kohana_Request
中有一个常量。请帮我理解它是什么。
由于
答案 0 :(得分:6)
不是常数,它是类型提示:http://www.php.net/manual/en/language.oop5.typehinting.php
$request
应为Kohana_Request
对象类型。