在PHP 中擷取網頁的HTML 程式碼
為了使用PHP 取得網頁的HTML 程式碼,您可以使用下列方法:
使用fopen()
如果您的PHP 伺服器支援URL fopen 包裝器,您可以使用簡單的方法來擷取HTML 程式碼:
<code class="php">$html = file_get_contents('https://stackoverflow.com/questions/ask');</code>
使用cURL
為了增強控制,請考慮使用cURL 函數:
<code class="php">$c = curl_init('https://stackoverflow.com/questions/ask'); curl_setopt($c, CURLOPT_RETURNTRANSFER, true); // Customize additional options as desired $html = curl_exec($c); if (curl_error($c)) die(curl_error($c)); // Determine the HTTP status code $status = curl_getinfo($c, CURLINFO_HTTP_CODE); curl_close($c);</code>
輸出:
$html 變量現在將儲存指定網頁的HTML 程式碼。
以上是如何在 PHP 中檢索網頁的 HTML 程式碼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!