Framework Thinkphp5 simple implementation behavior hook Hook

不言
Release: 2023-03-25 09:08:01
Original
5902 people have browsed it

这篇文章主要介绍了关于框架Thinkphp5 简单的实现行为 钩子 Hook,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下

实现在一个方法开始和结束加入两个行为:api_init、api_end

框架的搭建和模块的建立这里就省略了,请不太熟练的同学自行学习。

下面直接进入步骤:

1,先创建一个行为类\application\api\behavior\AopTest.php

controller(); $model_name = $request->module(); $action_name = $request->action(); echo ' controller_name='.$controller_name.' model_name='.$model_name.' action_name='.$action_name; //构建数组 $data = array(); $data['status'] = 0; $data['msg'] = '没有权限'; //exit(json_encode($data));//以json格式返回数据 } //绑定api结束 public function apiEnd(&$params){ echo PHP_EOL; echo '日志记录'.$params; echo PHP_EOL; } }
Copy after login

2,配置标签\application\api\tags.php

这里要注意的是配置的key就是对应的行为类内的方法,如果行为类内只需要一个方法,默认用run方法,如果是多个方法则对应的标签的key,

注: V5.0.4+ 版本以上,行为类的方法需要采用驼峰法命名 apiInit,如果在版本以下可以用 api_init

// 应用行为扩展定义文件 return [ //接口初始化 'api_init' => ['app\\api\\behavior\\AopTest'], 'api_end' => ['app\\api\\behavior\\AopTest'], ];
Copy after login

3,在要加入行为的类的方法内加入行为监听


        
Copy after login

4,访问查看输出效果:


5,文件分布示意



简单的实现了一下,希望给想了解的同学一点启发。

相关推荐:

thinkPHP5框架的分页查询功能实现方法

thinkphp5和swoole异步邮件群发实现方法


The above is the detailed content of Framework Thinkphp5 simple implementation behavior hook Hook. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!