当前位置:  开发笔记 > 编程语言 > 正文

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

如何解决《如何从网址PHP加载任意数据?》经验,为你挑选了2个好方法。

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



1> chews..:

我想你在找

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



2> Keith Palmer..:

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);

推荐阅读
coco2冰冰
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有