这篇文章主要给大家介绍了关于Yii中特殊行为ActionFilter的使用方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
新建 app\filters\LoggingFilter 继承 yii\base\ActionFilter
LoggingFilter 的功能: 在指定请求的 action 前后各记录一条日志
<?php
namespace app\filters;
use yii\base\ActionFilter;
class LoggingFilter extends ActionFilter
{
public function beforeAction($action)
{
parent::beforeAction($action);
// To do something
printf('This is a logging for %s\beforeAction.%s', $this->getActionId($action), PHP_EOL);
return true;
}
public function afterAction($action, $result)
{
parent::afterAction($action, $result);
// To do something
printf('This is a logging for %s\afterAction.%s', $this->getActionId($action), PHP_EOL);
return true;
}
}
新建 app\controllers\SystemController
<?php
namespace app\controllers;
use app\filters\LoggingFilter;
class SystemController extends \yii\web\Controller
{
public function behaviors()
{
parent::behaviors();
return [
'anchorAuth' => [
'class' => LoggingFilter::className(),
'only' => ['test', 'test-one'], // 仅对 'test'、'test-one' 生效
'except' => ['test-one'], // 排除 'test-one'
],
];
}
public function actionTestOne()
{
printf('This is a testing for %s.%s', $this->getRoute(), PHP_EOL);
}
public function actionTestTwo()
{
printf('This is a testing for %s.%s', $this->getRoute(), PHP_EOL);
}
public function actionTest()
{
printf('This is a testing for %s.%s', $this->getRoute(), PHP_EOL);
}
}
测试
请求 http://yii.test/index.php?r=system/test
This is a logging for test\beforeAction.
This is a testing for system/test.
This is a logging for test\afterAction.
请求 http://yii.test/index.php?r=system/test-one
This is a testing for system/test-one.
请求 http://yii.test/index.php?r=system/test-two
This is a testing for system/test-two.
总结
Yii 中的 ActionFilter(过滤器)相当于 Laravel 中的 Middleware(中间件),beforeAction 相当于前置中间件,afterAction 相当于后置中间件。
到此这篇关于Yii中特殊行为ActionFilter使用的文章就介绍到这了,更多相关Yii特殊行为ActionFilter使用内容请搜索编程学习网以前的文章希望大家以后多多支持编程学习网!
本文标题为:Yii中特殊行为ActionFilter的使用方法示例
- PHP中PDO事务处理操作示例 2022-10-15
- PHP实现微信支付(jsapi支付)流程步骤详解 2022-10-09
- laravel实现按月或天或小时统计mysql数据的方法 2023-02-22
- PHP简单实现二维数组的矩阵转置操作示例 2022-10-02
- 用nohup命令实现PHP的多进程 2023-09-02
- PHP仿tp实现mvc框架基本设计思路与实现方法分析 2022-10-18
- laravel通用化的CURD的实现 2023-03-17
- windows下9款一键快速搭建PHP本地运行环境的好工具(含php7.0环境) 2023-09-02
- Laravel balde模板文件中判断数据为空方法 2023-08-30
- php微信公众号开发之秒杀 2022-11-23