read() 공개 메소드

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