2014-02-06 80 views

回答

1

如果你想請求一個url並獲取html,你應該看看cURL模塊。

例子:

$url = "http://example.com/foo.html"; 
$ch = curl_init($url); 
curl_setopt($ch, CURLOPT_HEADER, false); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
$html = curl_exec($ch); 
curl_close($ch); 
+0

請給我一個演示。 – user3122242