首页 > 代码库 > 获取yii框架HTTP请求的方法

获取yii框架HTTP请求的方法

$request = Yii::$app->request;

if ($request->isAjax) { /* 该请求是一个 AJAX 请求 */ }
if ($request->isGet)  { /* 请求方法是 GET */ }
if ($request->isPost) { /* 请求方法是 POST */ }
if ($request->isPut)  { /* 请求方法是 PUT */ }

获取yii框架HTTP请求的方法