如何从网址PHP加载任意数据?

时间:2008-12-04 01:40:50

标签: php url scripting load

这个问题很简单。我将在PHP脚本中使用什么函数将URL中的数据加载到字符串中?

4 个答案:

答案 0 :(得分:5)

我认为你在寻找

$url_data = file_get_contents("http://example.com/examplefile.txt");

答案 1 :(得分:5)

CURL通常是一个很好的解决方案:http://www.php.net/curl


// create a new cURL resource
$ch = curl_init();

// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

// grab URL and pass it to the browser
$html = curl_exec($ch);

// close cURL resource, and free up system resources
curl_close($ch);

答案 2 :(得分:2)

使用文件包装器,您可以使用file_get_contents访问http资源(几乎只是GET请求,没有POST)。对于更复杂的http请求,如果安装了curl包装器,则可以使用它们。查看php.net了解更多信息。

答案 3 :(得分:1)

查看Snoopy,一个模拟网络浏览器的PHP类:

include "Snoopy.class.php";
$snoopy = new Snoopy;
$snoopy->fetchtext("http://www.example.com");
$html = $snoopy->results;