コード例 #1
0
 /**
  * Get data.
  *
  * @throws RuntimeException
  *
  * @return string
  */
 public function getData()
 {
     $offset = $this->stream->tell();
     if (!is_int($offset)) {
         throw new RuntimeException('Unable to get profile data');
     }
     $this->stream->seek(0);
     $data = $this->stream->getContents();
     $this->stream->seek($offset);
     return $data;
 }
コード例 #2
0
ファイル: PostBody.php プロジェクト: Vrian7ipx/cascadadev
 public function tell()
 {
     return $this->body ? $this->body->tell() : 0;
 }
コード例 #3
0
ファイル: Utils.php プロジェクト: bobozhangshao/HeartCare
 /**
  * Calculate a hash of a Stream
  *
  * @param StreamInterface $stream    Stream to calculate the hash for
  * @param string          $algo      Hash algorithm (e.g. md5, crc32, etc)
  * @param bool            $rawOutput Whether or not to use raw output
  *
  * @return string Returns the hash of the stream
  * @throws SeekException
  */
 public static function hash(StreamInterface $stream, $algo, $rawOutput = false)
 {
     $pos = $stream->tell();
     if ($pos > 0 && !$stream->seek(0)) {
         throw new SeekException($stream);
     }
     $ctx = hash_init($algo);
     while (!$stream->eof()) {
         hash_update($ctx, $stream->read(1048576));
     }
     $out = hash_final($ctx, (bool) $rawOutput);
     $stream->seek($pos);
     return $out;
 }
コード例 #4
0
 public function tell()
 {
     return $this->stream->tell();
 }
コード例 #5
0
ファイル: GuzzleHttpStream.php プロジェクト: lamenath/fbp
 /**
  * {@inheritdoc}
  */
 protected function doTell()
 {
     return $this->stream->tell();
 }