欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Thinkphp5 前置操作详解

程序员文章站 2022-05-01 18:15:43
protected $beforeActionList = [ 'first', 'second' => ['except'...

protected $beforeActionList = [

'first',

'second' => ['except'=>'hello'],

'three' =>['only'=>'hello,data'],

];

First方法:该类中执行所有方法前执行这函数;

Second方法:该类中除了hello方法外其他方法执行之前先执行这函数;

Three方法:该类中只有hello和data方法执行前执行这函数;