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


PHP Stream::getContents方法代码示例

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


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

示例1: testGetsContents

 public function testGetsContents()
 {
     $handle = fopen('php://temp', 'w+');
     fwrite($handle, 'data');
     $stream = new Stream($handle);
     $this->assertEquals('', $stream->getContents());
     $stream->seek(0);
     $this->assertEquals('data', $stream->getContents());
     $this->assertEquals('', $stream->getContents());
     $stream->seek(0);
     $this->assertEquals('da', $stream->getContents(2));
     $stream->close();
 }
开发者ID:defra91,项目名称:levecchiecredenze.it,代码行数:13,代码来源:StreamTest.php

示例2: makeCredentials

 /**
  * Create a new Credentials instance.
  *
  * @param string|array scope the scope of the access request, expressed
  *   either as an Array or as a space-delimited String.
  *
  * @param Stream jsonKeyStream read it to get the JSON credentials.
  *
  */
 public static function makeCredentials($scope, Stream $jsonKeyStream)
 {
     $jsonKey = json_decode($jsonKeyStream->getContents(), true);
     if (!array_key_exists('type', $jsonKey)) {
         throw new \InvalidArgumentException('json key is missing the type field');
     }
     if ($jsonKey['type'] == 'service_account') {
         return new ServiceAccountCredentials($scope, $jsonKey);
     } else {
         if ($jsonKey['type'] == 'authorized_user') {
             return new UserRefreshCredentials($scope, $jsonKey);
         } else {
             throw new \InvalidArgumentException('invalid value in the type field');
         }
     }
 }
开发者ID:bshaffer,项目名称:google-auth-library-php,代码行数:25,代码来源:ApplicationDefaultCredentials.php

示例3: testCanDetachAndAttachStream

 public function testCanDetachAndAttachStream()
 {
     $r = fopen('php://temp', 'w+');
     $stream = new Stream($r);
     $stream->write('foo');
     $this->assertTrue($stream->isReadable());
     $this->assertSame($r, $stream->detach());
     $this->assertNull($stream->detach());
     $this->assertFalse($stream->isReadable());
     $this->assertFalse($stream->read(10));
     $this->assertFalse($stream->isWritable());
     $this->assertFalse($stream->write('bar'));
     $this->assertFalse($stream->isSeekable());
     $this->assertFalse($stream->seek(10));
     $this->assertFalse($stream->tell());
     $this->assertTrue($stream->eof());
     $this->assertNull($stream->getSize());
     $this->assertSame('', (string) $stream);
     $this->assertSame('', $stream->getContents());
     $stream->attach($r);
     $stream->seek(0);
     $this->assertEquals('foo', $stream->getContents());
     $this->assertTrue($stream->isReadable());
     $this->assertTrue($stream->isWritable());
     $this->assertTrue($stream->isSeekable());
     $stream->close();
 }
开发者ID:hazaveh,项目名称:mySQLtoes,代码行数:27,代码来源:StreamTest.php


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