コード例 #1
0
ファイル: StreamTest.php プロジェクト: easy-system/es-http
 public function testDetachResource()
 {
     $resource = fopen('php://memory', 'w+b');
     $stream = new Stream($resource);
     $this->assertSame($stream->detach(), $resource);
     $this->assertNull($stream->getResource());
 }