This article example describes the method of Yii framework to obtain the corresponding id of the current controller and action. Share it for your reference. The specific methods are as follows:
In Yiii framework development, you may want to get the id of the current controller or action. It is actually very simple. It can be implemented in just one sentence of code. The following is the code to get the current id in the controller (controller) and View (view).
In the controller:
Copy the codeThe code is as follows:
$name = $this->getId(); // controller
$name = $action->id; // action
In view:
Copy the codeThe code is as follows:
$name = Yii::app()->controller->id; // controller
$name = $this->getAction()->getId(); // action
I hope that this article will be helpful to everyone's PHP programming based on the yii framework.