我在yii2中创建了一个restful api,我期待获取所有应用程序访问的日志,捕获用于访问应用程序的ip地址
在我的控制器中我添加了这个
public function actionLogin(){
//fetch request ip here then save to log
}
public function actionRequestResetPassword(){
//fetch request ip here then save to log
}
从上面可以看出很多代码重复。是否可以创建在每个请求中执行此操作的高阶操作