在 PHP 中,有多種方法可以擷取網頁的 HTML 程式碼。讓我們探討兩種常見的方法:
如果您的PHP 伺服器允許url fopen 包裝器,您可以使用file_get_contents 函數取得HTML 程式碼:
<code class="php">$html = file_get_contents('https://stackoverflow.com/questions/ask');</code>
此方法簡單,足以滿足基本需求。
要進行更高級的控制,請考慮使用cURL 函數:
<code class="php">$c = curl_init('https://stackoverflow.com/questions/ask'); curl_setopt($c, CURLOPT_RETURNTRANSFER, true); // Set other desired cURL options here... $html = curl_exec($c); if (curl_error($c)) die(curl_error($c)); // Get the HTTP status code if needed $status = curl_getinfo($c, CURLINFO_HTTP_CODE); curl_close($c);</code>
cURL 提供了更大的靈活性,允許您自訂請求的各個方面,例如標頭、cookie 和身份驗證.
以上是如何在 PHP 中從網頁檢索 HTML 程式碼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!