这篇文章主要介绍了关于框架Thinkphp5 简单的实现行为 钩子 Hook,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下
实现在一个方法开始和结束加入两个行为:api_init、api_end
框架的搭建和模块的建立这里就省略了,请不太熟练的同学自行学习。
下面直接进入步骤:
1,先创建一个行为类 \application\api\behavior\AopTest.php
<?php namespace app\api\behavior; //行为类 class AopTest{ //绑定api初始化 public function apiInit(&$params){ //参数获取 $id = input('id');//获取请求参数 $uid = session('UID');//获取session 登录uid //打印输出 echo PHP_EOL; echo 'ip检查'.$params.' GET:'.$id; echo ' uid='.$uid; echo PHP_EOL; //获取当前模块 控制器名 方法名称 $request= \think\Request::instance(); $controller_name = $request->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; } }
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'], ];
3,在要加入行为的类的方法内加入行为监听。
<?php namespace app\api\controller; use \think\Hook; class Index { //访问url http://app.tp5.com/index.php/api/index/index?id=5 public function index() { session_start(); session('UID',123); $id = input('id'); $params1 = '参数1'; $res = Hook::listen('api_init',$params1); echo var_export($res, true); echo 'api index'; $params2 = '参数2'; Hook::listen('api_end',$params2); } }
4,访问查看输出效果:
5,文件分布示意
简单的实现了一下,希望给想了解的同学一点启发。
相关推荐:
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!

DependencyInjection(DI)inPHPenhancescodeflexibilityandtestabilitybydecouplingdependencycreationfromusage.ToimplementDIeffectively:1)UseDIcontainersjudiciouslytoavoidover-engineering.2)Avoidconstructoroverloadbylimitingdependenciestothreeorfour.3)Adhe

ToimproveyourPHPwebsite'sperformance,usethesestrategies:1)ImplementopcodecachingwithOPcachetospeedupscriptinterpretation.2)Optimizedatabasequeriesbyselectingonlynecessaryfields.3)UsecachingsystemslikeRedisorMemcachedtoreducedatabaseload.4)Applyasynch

Yes,itispossibletosendmassemailswithPHP.1)UselibrarieslikePHPMailerorSwiftMailerforefficientemailsending.2)Implementdelaysbetweenemailstoavoidspamflags.3)Personalizeemailsusingdynamiccontenttoimproveengagement.4)UsequeuesystemslikeRabbitMQorRedisforb

DependencyInjection(DI)inPHPisadesignpatternthatachievesInversionofControl(IoC)byallowingdependenciestobeinjectedintoclasses,enhancingmodularity,testability,andflexibility.DIdecouplesclassesfromspecificimplementations,makingcodemoremanageableandadapt

The best ways to send emails using PHP include: 1. Use PHP's mail() function to basic sending; 2. Use PHPMailer library to send more complex HTML mail; 3. Use transactional mail services such as SendGrid to improve reliability and analysis capabilities. With these methods, you can ensure that emails not only reach the inbox, but also attract recipients.

Calculating the total number of elements in a PHP multidimensional array can be done using recursive or iterative methods. 1. The recursive method counts by traversing the array and recursively processing nested arrays. 2. The iterative method uses the stack to simulate recursion to avoid depth problems. 3. The array_walk_recursive function can also be implemented, but it requires manual counting.

In PHP, the characteristic of a do-while loop is to ensure that the loop body is executed at least once, and then decide whether to continue the loop based on the conditions. 1) It executes the loop body before conditional checking, suitable for scenarios where operations need to be performed at least once, such as user input verification and menu systems. 2) However, the syntax of the do-while loop can cause confusion among newbies and may add unnecessary performance overhead.

Efficient hashing strings in PHP can use the following methods: 1. Use the md5 function for fast hashing, but is not suitable for password storage. 2. Use the sha256 function to improve security. 3. Use the password_hash function to process passwords to provide the highest security and convenience.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

SublimeText3 English version
Recommended: Win version, supports code prompts!

Notepad++7.3.1
Easy-to-use and free code editor

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
