在 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中文网其他相关文章!