read() public method

public read ( $length )
示例#1
0
 public function testClaimsConsumedWhenReadLimitIsReached()
 {
     $this->assertFalse($this->body->eof());
     $this->body->read(1000);
     $this->assertTrue($this->body->eof());
 }