How to get current controller name and action name in Yii

H

How Can We Help?

How to get current controller name and action name in Yii

$controller=Yii::app()->controller;
 
$action=$controller->action;
 
 
//Getting the current action
 
echo $action->id;
 
 
 
//Getting the current controller
 
$controller->uniqueID

About the author

Ian Carnaghan

I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.

About Author

Ian Carnaghan

I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.

Follow Me