當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。