本文整理汇总了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();
}
示例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');
}
}
}
示例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();
}