当前位置: 首页>>代码示例>>PHP>>正文


PHP Zend_Controller_Request_Http::setPost方法代码示例

本文整理汇总了PHP中Zend_Controller_Request_Http::setPost方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Controller_Request_Http::setPost方法的具体用法?PHP Zend_Controller_Request_Http::setPost怎么用?PHP Zend_Controller_Request_Http::setPost使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Zend_Controller_Request_Http的用法示例。


在下文中一共展示了Zend_Controller_Request_Http::setPost方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: setPost

 /**
  * Set POST values method
  *
  * @param  string|array $spec
  * @param  null|mixed   $value
  * @return Zend_Controller_Request_Http
  */
 public function setPost($spec, $value = null)
 {
     if (!is_array($spec) && $value === null) {
         unset($_POST[$spec]);
         return $this;
     } elseif (is_array($spec) && empty($spec)) {
         $_POST = array();
         return $this;
     }
     return parent::setPost($spec, $value);
 }
开发者ID:ClaudioThomas,项目名称:shopware-4,代码行数:18,代码来源:RequestHttp.php

示例2: prepareAttributes

 /**
  * Prepares and adds $_POST data to item's attribute
  *
  * @param  array $itemPost
  * @param  int $key
  * @return array
  */
 public function prepareAttributes($itemPost, $key)
 {
     $httpRequest = new Zend_Controller_Request_Http();
     $httpRequest->setPost($itemPost);
     /** @var $itemForm Enterprise_Rma_Model_Item_Form */
     $itemForm = Mage::getModel('enterprise_rma/item_form');
     $itemForm->setFormCode('default')->setEntity($this);
     $itemData = $itemForm->extractData($httpRequest);
     $files = array();
     foreach ($itemData as $code => &$value) {
         if (is_array($value) && empty($value)) {
             if (array_key_exists($code . '_' . $key, $_FILES)) {
                 $value = $_FILES[$code . '_' . $key];
                 $files[] = $code;
             }
         }
     }
     $itemErrors = $itemForm->validateData($itemData);
     if ($itemErrors !== true) {
         $this->_errors = array_merge($itemErrors, $this->_errors);
     } else {
         $itemForm->compactData($itemData);
     }
     if (!empty($files)) {
         foreach ($files as $code) {
             unset($_FILES[$code . '_' . $key]);
         }
         return $files;
     }
 }
开发者ID:hazaeluz,项目名称:magento_connect,代码行数:37,代码来源:Item.php


注:本文中的Zend_Controller_Request_Http::setPost方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。