如何yii getPost为数组_POST变量?

时间:2012-09-06 13:51:20

标签: php yii http-post

假设我有

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

我怎么能

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

我如何通过索引检索post变量? 是否有任何yii函数检查sql注入? getPost会检查吗?

谢谢。

5 个答案:

答案 0 :(得分:31)

我不熟悉yii,但查看该函数的源代码 https://github.com/yiisoft/yii/blob/1.1.12/framework/web/CHttpRequest.php

你会做

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

getPost函数不会阻止sql注入。有关保护yii应用程序的更多信息,请阅读http://www.yiiframework.com/wiki/275/how-to-write-secure-yii-applications/#hh11

答案 1 :(得分:10)

Yii2

$x = Yii::$app->request->post('x');

答案 2 :(得分:2)

使用模型测试,它看起来像这样

$test = new Test();
$test->attributes = Yii::app()->request->getPost('x');   
$y = $test->getAttribute('y');

答案 3 :(得分:2)

的Yii ::应用程序() - >请求 - > getParam('删除&#39);

你可以看到这个链接

http://www.yiiframework.com/forum/index.php/topic/28547-get-post-parameters-with-the-same-name/

答案 4 :(得分:-1)

> 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));
>     }