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


PHP Stream::tell方法代码示例

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


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

示例1: testAllowsBoundedSeek

 public function testAllowsBoundedSeek()
 {
     $this->body->seek(100);
     $this->assertEquals(13, $this->decorated->tell());
     $this->body->seek(0);
     $this->assertEquals(0, $this->body->tell());
     $this->assertEquals(3, $this->decorated->tell());
     $this->assertEquals(false, $this->body->seek(1000, SEEK_END));
 }
开发者ID:hilmysyarif,项目名称:sic,代码行数:9,代码来源:LimitStreamTest.php

示例2: 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

示例3: testProvidesStreamPosition

 public function testProvidesStreamPosition()
 {
     $handle = fopen('php://temp', 'w+');
     $stream = new Stream($handle);
     $this->assertEquals(0, $stream->tell());
     $stream->write('foo');
     $this->assertEquals(3, $stream->tell());
     $stream->seek(1);
     $this->assertEquals(1, $stream->tell());
     $this->assertSame(ftell($handle), $stream->tell());
     $stream->close();
 }
开发者ID:defra91,项目名称:levecchiecredenze.it,代码行数:12,代码来源:StreamTest.php


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