Curl выводит значение в браузере
$ch2 = curl_init($url2);
curl_setopt($ch2, CURLOPT_HTTPHEADER ,array(
"Authorization: $token_type $access_token",
'Cache-Control: no-cache'
));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$response2 = curl_exec($ch2);
curl_close($ch2);
Выводит в браузер
Без всякого echo и т.п
В чём может быть проблема?
