草庐IT

afterAction

全部标签

php - Yii 中的 afterAction 缺陷

当我在Action中使用重定向时,afterAction方法(在controller.php中)不起作用!我该如何解决这个问题?注意:我不能使用beforeAction因为我在我的Action中生成一个变量,我在afterAction中使用它提前致谢...publicfunctionactionHsh(){$this->hesam=502;$this->redirect(array('charge/printMyCharge'));}在CController中protectedfunctionafterAction($action){$number=$this->hesam=502;}

php - Yii2 db getStats(db查询数)

在Yii的Db-component中有一个有用的方法getStats$sql_stats=YII::app()->db->getStats();echo$sql_stats[0]//thenumberofSQLstatementsexecutedecho$sql_stats[1]//totaltimespentOfficialdocumentationlinkYii2有获取这些信息的方法吗? 最佳答案 这里是Yii2的等价物:$profiling=Yii::getLogger()->getDbProfiling();$profili