Ejemplo n.º 1
0
 public function isPermanenceConnection()
 {
     $version = $this->firstLine->getVersion(true);
     if (version_compare($version, '1.0', '<=')) {
         return 'keep-alive' === $this->header->get('HTTP_CONNECTION', false);
     } else {
         return 'close' !== $this->header->get('HTTP_CONNECTION', true);
     }
 }