⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.74
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-pear
/
pear
/
php
/
Horde
/
Http
/
Response
/
Edit File: Peclhttp2.php
<?php /** * Copyright 2007-2016 Horde LLC (http://www.horde.org/) * * @author Michael Cramer <michael@bigmichi1.de> * @license http://www.horde.org/licenses/bsd BSD * @category Horde * @package Http */ /** * @author Michael Cramer <michael@bigmichi1.de> * @license http://www.horde.org/licenses/bsd BSD * @category Horde * @package Http */ class Horde_Http_Response_Peclhttp2 extends Horde_Http_Response_Base { /** * HttpMessage object. * * @var \http\Client\Response */ protected $_response; /** * Constructor. * * @param string $uri * @param \http\Client\Response $response */ public function __construct($uri, \http\Client\Response $response) { try { $info = $response->getTransferInfo(); } catch (\http\Exception $e) { throw new Horde_Http_Exception($e); } try { $this->uri = $info->effective_url; } catch (\http\Exception\RuntimeException $e) { $this->uri = $uri; } $this->httpVersion = $response->getHttpVersion(); $this->code = $info->response_code; $this->_response = $response; $this->_headers = new Horde_Support_CaseInsensitiveArray( $response->getHeaders() ); $this->headers = array_change_key_case($this->_headers->getArrayCopy()); } public function getBody() { return $this->_response->getBody()->toString(); } }
Simpan