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


PHP EntityBody::getContentLength方法代码示例

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


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

示例1: setBody

 /**
  * Set the body of the request
  *
  * @param string|resource|EntityBody $body Body to use in the entity body
  *      of the request
  * @param string $contentType (optional) Content-Type to set.  Leave null
  *      to use an existing Content-Type or to guess the Content-Type
  * @param bool $tryChunkedTransfer (optional) Set to TRUE to try to use
  *      Tranfer-Encoding chunked
  *
  * @return EntityEnclosingRequest
  * @throws RequestException if the protocol is < 1.1 and Content-Length can
  *      not be determined
  */
 public function setBody($body, $contentType = null, $tryChunkedTransfer = false)
 {
     $this->body = EntityBody::factory($body);
     $this->removeHeader('Content-Length');
     $this->setHeader('Expect', '100-Continue');
     if ($contentType) {
         $this->setHeader('Content-Type', (string) $contentType);
     }
     if ($tryChunkedTransfer) {
         $this->setHeader('Transfer-Encoding', 'chunked');
     } else {
         $this->removeHeader('Transfer-Encoding');
         // Set the Content-Length header if it can be determined
         $size = $this->body->getContentLength();
         if ($size !== null && $size !== false) {
             $this->setHeader('Content-Length', $size);
         } else {
             if ('1.1' == $this->protocolVersion) {
                 $this->setHeader('Transfer-Encoding', 'chunked');
             } else {
                 throw new RequestException('Cannot determine entity body ' . 'size and cannot use chunked Transfer-Encoding when ' . 'using HTTP/' . $this->protocolVersion);
             }
         }
     }
     return $this;
 }
开发者ID:MicroSDHC,项目名称:justinribeiro.com-examples,代码行数:40,代码来源:EntityEnclosingRequest.php

示例2: getContentLength

 /**
  * @return int
  */
 public function getContentLength()
 {
     return $this->contentLength !== null ? $this->contentLength : $this->content->getContentLength();
 }
开发者ID:santikrass,项目名称:apache,代码行数:7,代码来源:DataObject.php

示例3: getContentLength

 /**
  * @return int
  */
 public function getContentLength()
 {
     return $this->contentLength ?: $this->content->getContentLength();
 }
开发者ID:fandikurnia,项目名称:CiiMS,代码行数:7,代码来源:DataObject.php


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