Вот такую вот ошибку выдает
Notice: Undefined variable: destinationResponseHeaders in /home/site/index.php on line 206 Warning: Invalid argument supplied for foreach() in /home/site/http/index.php on line 206
не пойму что на что заменить, устал с ним бороться, знатоки, выручайсе
$sourceResponseHeaders = array();
foreach ($destinationResponseHeaders as $header)
if (!preg_match('/^([^:]+): (.*)$/', $header, $matches))
list($protocol, $responseCode, $responseMessage) = explode(' ', $header);
else {
list($headerName, $headerValue) = array_splice($matches, -2);
$sourceResponseHeaders[$headerName][] = $headerValue;
}