yiiフレームワークコントローラの要求パラメータ処理
827 ワード
//
namespace app\controllers;
//
use yii\web\Controller;
//
class HelloController extends Controller{
// , action ,
public function actionIndex(){
//YII ,YII $app, $app , $app
//
$request = \YII::$app->request;
// request ,get get ,post post
//get id,id 10
echo $request->get('id', 10) . '
';
//post name,name hello
echo $request->post('name', 'hello') . '
';
//
if($request->isGet){
echo 'this is get method' . '
';
}
if($request->isPost){
echo 'this is post method' . '
';
}
// ip
echo $request->userIp;
}
}