FCGI_STDOUT is a stream record for sending arbitrary data from the application to the Web server
Inheritance: extends Protocol\FCGI\Record
Example #1
0
 public function testUnpacking()
 {
     $request = Stdout::unpack(hex2bin(self::$rawMessage));
     $this->assertEquals($request->getType(), FCGI::STDOUT);
     $this->assertEquals($request->getContentData(), 'test');
 }