request->isPost)" statement to determine. If the condition is true, it means a post submission.">
1. Determine whether the submission is through the post method in the controller:
if(Yii::$app->request->isPost){ return true; }else{ return false; }
Recommended learning:Yii Getting Started Tutorial
The above is the detailed content of yii determines whether post submission. For more information, please follow other related articles on the PHP Chinese website!