FCGI_DATA is a second stream record type used to send additional data to the application.
Наследование: extends Protocol\FCGI\Record
Пример #1
0
 public function testUnpacking()
 {
     $request = Data::unpack(hex2bin(self::$rawMessage));
     $this->assertEquals(FCGI::DATA, $request->getType());
     $this->assertEquals('test', $request->getContentData());
 }