我有 php curl 的问题。我正在使用这个脚本
curl_setopt($ch, CURLOPT_HEADER, true); // header will be at output
curl_setopt($ch, CURLOPT_NOBODY, false);
$content = curl_exec ($ch);
$info = curl_getinfo($ch);
if ($content === false || $info['http_code'] != 200) {
$output = "No cURL data returned for $url [". $info['http_code']. "]";
if (curl_error($ch))
$output .= "\n". curl_error($ch);
print $output;
}
else {
print $content;
}
curl_close ($ch);
?>
我正在尝试连接到这个网站:kaztorka.org,但给了我“来自服务器的空回复”错误。但是它适用于控制台 CURL。
谢谢