コード例 #1
0
ファイル: Rest.php プロジェクト: jorgenils/zend-framework
 /**
  * Performs an HTTP PUT request to $path.
  *
  * @param string $path
  * @param array $data
  * @return Zend_Http_Response
  */
 public final function restPut($path, $data)
 {
     $this->_prepareRest($path);
     $this->_uri->queryArray($data);
     return self::getHttpClient()->put($data);
 }