Home  >  Article  >  PHP Framework  >  yii2 determines whether it is submitted in post mode

yii2 determines whether it is submitted in post mode

尚
Original
2019-12-07 10:35:112962browse

yii2 determines whether it is submitted in post mode

Determine whether the submission is through the post method in the controller:

 if(Yii::$app->request->isPost){
        return true;  
 }else{
        return false;  
 }

Judge the get submission

if(Yii::$app->request->isGet){
    return true;
}else{
    return false;  
}

Recommended: yii usage tutorial

The above is the detailed content of yii2 determines whether it is submitted in post mode. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn