企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# hinkphp5方法注入(tp6废除了hook) 如果你需要在`Request`请求对象中添加自己的方法,可以使用`Request`对象的方法注入功能,例如: ``` publicfunction index(){ Request::hook('user','userinfo');//绑定user方法指向userinfo方法 $data = Request::instance()->user(1); return $data; } userInfo函数须写在common.php中 : /**使用hook方法注入 */ use think\Request; //方法注入的函数 function userInfo(Request $request, $userId){ return"I am id is ".$userId; } 必须引入Request 方法 浏览器访问index方法的时候 输出I am id is 1 ```