通过PHP检索网页内容的最简单方法是什么?

时间:2009-06-07 04:46:20

标签: php

我想写一个函数来检索网页的内容,所以它的工作方式如下:

$url = "example.com";
$pageContent = RetrievePageContent($url);

最简单的方法是什么?

提前感谢您的帮助!

3 个答案:

答案 0 :(得分:6)

$pageContent = file_get_contents($url);

来自:file_get_contents

答案 1 :(得分:4)

最简单的方法是file_get_contents,它完全符合您的要求:

$url = "http://example.com";
$pageContent = file_get_contents($url);

答案 2 :(得分:1)

您可以使用fopen command并将其传递给网址。但是,您的主机可能会禁用此功能。最佳做法是使用cURL functionsdocumentation includes sample code完全符合您的要求。