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