php – 在“put”方法中获取zend框架中的post参数

前端之家收集整理的这篇文章主要介绍了php – 在“put”方法中获取zend框架中的post参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用此获取参数
$this->params()->fromQuery('KEY');

我找到了两种获取POST参数的方法

//first way
$this->params()->fromPost('KEY',null);

//second way
$this->getRequest()->getPost();

这两个都在“POST”方法中工作,但现在在“PUT”方法中,如果我将值作为post参数传递.

如何在“PUT”方法获取后置参数?

您需要阅读请求正文并解析它,如下所示:
$putParams = array();
parse_str($this->getRequest()->getContent(),$putParams);

这会将所有参数解析为$putParams-array,因此您可以像访问超级全局$_POST或$_GET一样访问它.例如:

// Get the parameter named 'id'
$id = $putParams['id'];

// Loop over all params
foreach($putParams as $key => $value) {
    echo 'Put-param ' . $key . ' = ' . $value . PHP_EOL;
}
原文链接:https://www.f2er.com/php/133057.html

猜你在找的PHP相关文章