Yii框架如何获取当前controlle和action的id

作者:袖梨 2022-06-25

在控制器里

$name = $this->getId();  // controller

$name = $action->id;  // action

在视图里

$name = Yii::app()->controller->id;  // controller

$name = $this->getAction()->getId(); // action

相关文章

精彩推荐