首页  >  文章  >  后端开发  >  如何在 PHP 中检索网页的 HTML 代码?

如何在 PHP 中检索网页的 HTML 代码?

Susan Sarandon
Susan Sarandon原创
2024-11-01 09:45:02635浏览

How to Retrieve the HTML Code of a Web Page in PHP?

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

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn