Skip to content

Instantly share code, notes, and snippets.

@Bizunow
Last active September 15, 2017 14:56
Show Gist options
  • Save Bizunow/b3f598e77d03c372eae1aab8a0b84ae8 to your computer and use it in GitHub Desktop.
Save Bizunow/b3f598e77d03c372eae1aab8a0b84ae8 to your computer and use it in GitHub Desktop.
[Yii GET/POST param] #php #yii
// Yii 1
Yii::app()->request->getParam('q');
// Yii 2?
Yii::$app->request->post('var');
Yii::$app->request->get('var');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment