-8
如何在url中獲取html(http://m.wasu.cn/?profile=wasutv320_cj)?使用file_get_conntent()是錯誤的。使用PHP讀取頁面
如何在url中獲取html(http://m.wasu.cn/?profile=wasutv320_cj)?使用file_get_conntent()是錯誤的。使用PHP讀取頁面
如果你想請求一個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);
請給我一個演示。 – user3122242