phpinfo();函數顯示curl已啓用。 dll語句也在.ini文件中取消註釋。 仍然捲曲請求不起作用。PHP/Curl請求不起作用
<?php
//step1
$cSession = curl_init();
//step2
curl_setopt($cSession,CURLOPT_URL,"http://www.google.com");
curl_setopt($cSession,CURLOPT_RETURNTRANSFER,true);
curl_setopt($cSession,CURLOPT_HEADER, false);
//step3
$result=curl_exec($cSession);
if(curl_errno($cSession)){
echo 'Curl error: ' . curl_error($cSession);
}
//step4
curl_close($cSession);
//step5
echo $result;
?>
這段代碼顯示了錯誤:
捲曲錯誤:無法連接到192.168.1.1的端口8080:超時
'192.168.1.1'通常是你的路由器的IP?你有沒有在你的HOSTS文件中設計阻止訪問Google – RiggsFolly
我已經使用了這段代碼,它沒有任何問題。您是否在'hosts'文件中拒絕了谷歌? – Vuong
@VictorGeek偉大的思想都相似! – RiggsFolly