我使用` PHP function. But problem with this is it gives error when url starts from
www.`使用的file_get_contents解析網頁數據
(!) Warning: file_get_contents(www.iiit.ac.in): failed to open stream: No such file or directory in F:\wamp\www\test.php on line 63
這裏解析網頁數據是該代碼演示:Link to DEMO
<?php
$url= 'www.facebook.com';
$data = file_get_contents($url);
echo $data;
echo "<br/>Using http";
$url= 'https://www.facebook.com';
$data = file_get_contents($url);
echo $data;
?>
謝謝!但我們無法控制用戶。他們總是用'www.'查詢。所以在上面的例子中沒有直接處理這樣的查詢的範圍,對嗎?如果不存在,如何在url之前追加'http://'? – user123