how to yii getPost for array _POST vars?

2019-01-26 04:29发布

Assuming i have

$_POST["x"]["y"] = 5;

how can i

Yii::app()->request->getPost('x[y]');

how can i retrieve the post variable by index ? and is there any yii function that checks for sql injection ? does the getPost do that check ?

Thank you .

5条回答
一纸荒年 Trace。
2楼-- · 2019-01-26 05:12

I am not familiar with yii, but looking at the source code for the function https://github.com/yiisoft/yii/blob/1.1.12/framework/web/CHttpRequest.php

You would do

$x = Yii::app()->request->getPost('x');
$y = $x['y'];

The getPost function WILL NOT prevent sql injection. Please read http://www.yiiframework.com/wiki/275/how-to-write-secure-yii-applications/#hh11 for more information on securing your yii application

查看更多
做个烂人
3楼-- · 2019-01-26 05:15
闹够了就滚
4楼-- · 2019-01-26 05:24

Yii2

$x = Yii::$app->request->post('x');
查看更多
冷血范
5楼-- · 2019-01-26 05:32

With model Test it's look like this

$test = new Test();
$test->attributes = Yii::app()->request->getPost('x');   
$y = $test->getAttribute('y');
查看更多
虎瘦雄心在
6楼-- · 2019-01-26 05:34
> My controller 
>     public function mi(){
>         echo "Hola MI Controlador!";
>         // in login scenario
> 
>         $request = Yii::app()->request->getPost('nombre');
>         print_r($request);
> 
> 
>         //$this->render('index',array('nombre',$post));
>     } 
查看更多
登录 后发表回答