Yii::app()->request->get yii1

To access the "get" method in Yii1, you can use the following code:

Yii::app()->request->get('parameterName');

Replace 'parameterName' with the name of the parameter you want to retrieve from the request. This code will return the value of the specified parameter from the GET request.

Please note that this code assumes you are using Yii1 and have properly configured the application. Make sure to include the necessary Yii files and set up the application before using this code.