Warning: Undefined array key 1 in /var/www/html/index.php on line 184
Warning: Undefined array key 1 in /var/www/html/index.php on line 207
Warning: Undefined array key 2 in /var/www/html/index.php on line 207
сменил хостинрг, а на нем выдает такие ошибки, что с этим сделать?
184
/* Парсим ответ сервера назначения */
//184// list($destinationResponseHeaders, $body) = explode("\r\n\r\n", $results, 2);
$destinationResponseHeaders = explode("\r\n", $destinationResponseHeaders);
$sourceResponseHeaders = array();
foreach ($destinationResponseHeaders as $header)
if (!preg_match('/^([^:]+): (.*)$/', $header, $matches))
//207// list($protocol, $responseCode, $responseMessage) = explode(' ', $header);
else {
list($headerName, $headerValue) = array_splice($matches, -2);
$sourceResponseHeaders[$headerName][] = $headerValue;
}