Silverstripe - 检索数组中的POST数组

时间:2017-02-13 07:07:26

标签: php arrays forms post silverstripe

我有一个表单,我使用POST发布到HTTP标头。我试图print_r变量,但我不知道如何变量在数组中的数组。

的print_r($ _ POST);给了我

Array ( [y] => Array ( [0] => 124 ) [x] => Array ( [0] => 02:23PM ) )

我的代码:

public function index(SS_HTTPRequest $request) {

    if($request->postVars(y)) {
        print_r ($request);         
    }
}

我知道我错过了什么,但不确定它是什么。

1 个答案:

答案 0 :(得分:3)

您正在使用postVars,它为您提供所有帖子变量。你想要什么,获得一个postVar,是这样的: $request = $this->getRequest(); Debug::dump($request->postVar('x'));