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