我試圖在Ubuntu 15.10中使用curl在PHP中使用curl來獲取HTML頁面。在PHP中使用捲曲不起作用
我的代碼是後續..
<?php
ini_set('display_errors', 1);
$url = 'http://www.galliera.it/118';
print "The url ... ".$url;
echo '<br>';
echo '<br>';
//#Set CURL parameters ...
$ch = curl_init();
curl_setopt($ch, CURLOPT_AUTOREFERER, TRUE);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
curl_setopt($ch, CURLOPT_PROXY, '');
$data = curl_exec($ch);
curl_close($ch);
print "Data ... ".$data;
echo '<br>';
echo '<br>';
?>
我不能顯示$data
值當我執行我的代碼,並在我的控制檯有200執行代碼返回。
任何幫助/建議/示例?
無法解析'當我執行我的代碼時,我無法顯示$ data值,並且在我的控制檯中有200個廣告執行代碼返回.'但是運行了您的代碼並且工作正常。 –
由於許多原因,您的IP可能會被阻止。 – rtfm
print_r(curl_getinfo($ ch)); print_r(curl_error($ ch)); –