查询事件
最后更新于:2022-04-01 21:21:49
## 查询事件(V5.0.4+)
从`5.0.4+`版本开始,增加了数据库的CURD操作事件支持,包括:
|事件|描述|
|---|---|
|before_select|`select`查询前回调|
|before_find|`find`查询前回调|
|after_insert|`insert`操作成功后回调|
|after_update|`update`操作成功后回调|
|after_delete|`delete`操作成功后回调|
查询事件仅支持`find`、`select`、`insert`、`update`和`delete`方法。
## 注册事件
使用下面的方法注册数据库查询事件
~~~
Query::event('after_insert','callback');
Query::event('before_select',function($options,$query){
// 事件处理
return $result;
});
~~~
';