Файловый менеджер - Редактировать - /home/avadvi5/public_html/wp-content/plugins/wpforms/vendor_prefixed/apimatic/unirest-php/src/Response.php
Ðазад
<?php declare (strict_types=1); namespace WPForms\Vendor\Unirest; use WPForms\Vendor\CoreInterfaces\Core\Response\ResponseInterface; use WPForms\Vendor\CoreInterfaces\Sdk\ConverterInterface; class Response implements ResponseInterface { private $code; private $raw_body; private $body; private $headers; /** * @param int $code response code of the cURL request * @param string $raw_body the raw body of the cURL response * @param array $headers parsed headers array from cURL response * @param array $json_args arguments to pass to json_decode function */ public function __construct(int $code, string $raw_body, array $headers, array $json_args = []) { $this->code = $code; $this->headers = $headers; $this->raw_body = $raw_body; $this->body = $raw_body; // make sure raw_body is the first argument \array_unshift($json_args, $raw_body); if (\function_exists('json_decode')) { $json = \call_user_func_array('json_decode', $json_args); if (\json_last_error() === \JSON_ERROR_NONE) { $this->body = $json; } } } public function getStatusCode() : int { return $this->code; } public function getHeaders() : array { return $this->headers; } public function getRawBody() : string { return $this->raw_body; } public function getBody() { return $this->body; } public function convert(ConverterInterface $converter) { return $converter->createHttpResponse($this); } }
| ver. 1.1 | |
.
| PHP 8.3.30 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка