官网:http://requests.ryanmccue.info
官方介绍:
Requests is a humble HTTP request library. It simplifies how you interact with other sites and takes away all your worries.
翻译:Requests是一个谦虚的HTTP请求类库,它简化你与其他网站的交互并把你的一些烦恼带走
如何使用:
1、下载:https://github.com/rmccue/Requests/archive/v1.6.0.zip 【查看最新】
2、解压缩,得到如下文件
把library目录重名称为requests,然后拷贝到程序的类库文件夹
3、引用类库文件
require_once ('requests/Requests.php');
4、让程序自动引用相关内部类库(一定要执行这行代码)
Requests::register_autoloader();
5、开始使用GET或POST请求获取远程数据
$response = Requests::get('https://github.com/timeline.json'); var_dump($response);
常用方法说明:
第1个参数:$url 同get的第一个参数
第2个参数:$headers = array() 同get的第2个参数
第4个参数:$options = array() 同get的第3个参数
第3个参数:$data = array() 为表单提交的数据
转载请注明:拈花古佛 » 获取远程数据类库:Http Requests for PHP