文件名称:rest-curlclient-php:使用cURL的基本REST客户端
文件大小:2KB
文件格式:ZIP
更新时间:2024-06-01 06:57:53
PHP
使用cURL的基本REST客户端 支持PUT,GET,POST,DELETE并使用cURL的简单实现。 基于rest-client-php ,感谢他的工作。 它是为像我这样的人制作的,在某些情况下无法使用pecl_http。 支持GET,POST,PUT,DELETE HTTP方法。 cURL中的所有选项都可以作为数组传递给构造函数。 来自调用curl_getinfo()和curl_exec()的响应分别在$ client-> response_info和$ client-> response_object中 例子 require 'rest_client.php'; $c = new RestCurlClient(); GET请求 $res = $c->get('http://www.yahoo.com'); 过帐原始POST数据 $res = $c->post( 'ht
【文件预览】:
rest-curlclient-php-master
----README.md(2KB)
----rest_curl_client.php(5KB)
----.gitignore(19B)