masnathan/curl
最新稳定版本:0.0.2
Composer 安装命令:
composer require masnathan/curl
包简介
Another CURL Object.
关键字:
README 文档
README
#Curl
Another Curl Library...
How to install via Composer
The recommended way to install is through Composer.
# Install Composer $ curl -sS https://getcomposer.org/installer | php # Add curl as a dependency $ php composer.phar require masnathan/curl:dev-master
Once it's installed, you need to require Composer's autoloader:
require 'vendor/autoload.php';
#How to use
##The basic way
$curl = new Curl(); //These are the fast-forward methods $curl->get(string $url [, array $params]); $curl->post(string $url [, array $params]); $curl->put(string $url [, array $params]); $curl->delete(string $url [, array $params]); //or you can do it like a true ninja $response = $curl ->init() ->setOpt(CURLOPT_URL, 'http://somedomain.com/') ->setOpt(CURLOPT_SSL_VERIFYHOST, 0) ->setOpt(CURLOPT_SSL_VERIFYPEER, false) ->setOpt(CURLOPT_CONNECTTIMEOUT, 5) ->setOpt(CURLOPT_RETURNTRANSFER, true) ->execute(); $curl->close(); //or you can login onto a website $curl->init(); $login_page = $curl->login('http://somedomain.com/login', array('username' => 'my_user', 'password' => 'my_fancy_password'), '/path/to/my/cookie.txt'); $private_page = $curl->get('http://somedomain.com/private_page');
##The "not so basic until you know it" way
//These are the fast-forward methods Ch::get( string $url [, array $params [, function $callback [, string $data_type]]]); Ch::post( string $url [, array $params [, function $callback [, string $data_type]]]); Ch::postJson( string $url [, array $params [, function $callback [, string $data_type]]]); Ch::postXml( string $url [, array $params [, function $callback [, string $data_type]]]); Ch::put( string $url [, array $params [, function $callback [, string $data_type]]]); Ch::delete( string $url [, array $params [, function $callback [, string $data_type]]]); //Here are a few examples: Ch::get('http://somedomain.com'); Ch::get('http://somedomain.com', array('param1' => 'some value', 'param2' => 'some other value')); Ch::get('http://somedomain.com', array('param1' => 'some value', 'param2' => 'some other value'), function(data) { var_dump($data); }); Ch::get('http://somedomain.com', array('param1' => 'some value', 'param2' => 'some other value'), function(data) { var_dump($data); }, 'json'); Ch::get('http://somedomain.com', array('param1' => 'some value', 'param2' => 'some other value'), 'json'); Ch::get('http://somedomain.com', 'xml'); Ch::get('http://somedomain.com', function(data) { var_dump($data); }, 'json'); //Any of the above examples is aceptable
License
This library is under the MIT License, see the complete license here
###Is your project using MASNathan\Curl? [Let me know](https://github.com/ReiDuKuduro/Curl/issues/new?title=New%20script%20using%20Curl&body=Name and Description of your script.)!
统计信息
- 总下载量: 8.32k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2013-12-27