mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-23 16:18:42 +00:00
137 lines
3.0 KiB
Markdown
137 lines
3.0 KiB
Markdown
# php-curl-class
|
|
|
|
[![Build Status](https://travis-ci.org/php-curl-class/php-curl-class.png?branch=master)](https://travis-ci.org/php-curl-class/php-curl-class)
|
|
|
|
PHP Curl Class is an object-oriented wrapper of the PHP cURL extension.
|
|
|
|
### Composer
|
|
|
|
$ composer require php-curl-class/php-curl-class
|
|
|
|
### Quick Start and Examples
|
|
|
|
```php
|
|
require 'Curl.class.php';
|
|
|
|
$curl = new Curl();
|
|
$curl->get('http://www.example.com/');
|
|
```
|
|
|
|
```php
|
|
$curl = new Curl();
|
|
$curl->get('http://www.example.com/search', array(
|
|
'q' => 'keyword',
|
|
));
|
|
```
|
|
|
|
```php
|
|
$curl = new Curl();
|
|
$curl->post('http://www.example.com/login/', array(
|
|
'username' => 'myusername',
|
|
'password' => 'mypassword',
|
|
));
|
|
```
|
|
|
|
```php
|
|
$curl = new Curl();
|
|
$curl->setBasicAuthentication('username', 'password');
|
|
$curl->setUserAgent('');
|
|
$curl->setReferrer('');
|
|
$curl->setHeader('X-Requested-With', 'XMLHttpRequest');
|
|
$curl->setCookie('key', 'value');
|
|
$curl->get('http://www.example.com/');
|
|
|
|
if ($curl->error) {
|
|
echo $curl->error_code;
|
|
}
|
|
else {
|
|
echo $curl->response;
|
|
}
|
|
|
|
var_dump($curl->request_headers);
|
|
var_dump($curl->response_headers);
|
|
```
|
|
|
|
```php
|
|
$curl = new Curl();
|
|
$curl->setOpt(CURLOPT_SSL_VERIFYPEER, false);
|
|
$curl->get('https://encrypted.example.com/');
|
|
```
|
|
|
|
```php
|
|
$curl = new Curl();
|
|
$curl->put('http://api.example.com/user/', array(
|
|
'first_name' => 'Zach',
|
|
'last_name' => 'Borboa',
|
|
));
|
|
```
|
|
|
|
```php
|
|
$curl = new Curl();
|
|
$curl->patch('http://api.example.com/profile/', array(
|
|
'image' => '@path/to/file.jpg',
|
|
));
|
|
```
|
|
|
|
```php
|
|
$curl = new Curl();
|
|
$curl->delete('http://api.example.com/user/', array(
|
|
'id' => '1234',
|
|
));
|
|
```
|
|
|
|
```php
|
|
// Enable gzip compression.
|
|
$curl = new Curl();
|
|
$curl->setOpt(CURLOPT_ENCODING , 'gzip');
|
|
$curl->get('https://www.example.com/image.png');
|
|
```
|
|
|
|
```php
|
|
// Case-insensitive access to headers.
|
|
$curl = new Curl();
|
|
$curl->get('https://www.example.com/image.png');
|
|
echo $curl->response_headers['Content-Type'] . "\n"; // image/png
|
|
echo $curl->response_headers['CoNTeNT-TyPE'] . "\n"; // image/png
|
|
```
|
|
|
|
```php
|
|
$curl->close();
|
|
```
|
|
|
|
```php
|
|
// Example access to curl object.
|
|
curl_set_opt($curl->curl, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1');
|
|
curl_close($curl->curl);
|
|
```
|
|
|
|
```php
|
|
// Requests in parallel with callback functions.
|
|
$curl = new Curl();
|
|
$curl->setOpt(CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1');
|
|
|
|
$curl->success(function($instance) {
|
|
echo 'call was successful. response was' . "\n";
|
|
echo $instance->response . "\n";
|
|
});
|
|
$curl->error(function($instance) {
|
|
echo 'call was unsuccessful.' . "\n";
|
|
echo 'error code:' . $instance->error_code . "\n";
|
|
echo 'error message:' . $instance->error_message . "\n";
|
|
});
|
|
$curl->complete(function($instance) {
|
|
echo 'call completed' . "\n";
|
|
});
|
|
|
|
$curl->get(array(
|
|
'https://duckduckgo.com/',
|
|
'https://search.yahoo.com/search',
|
|
'https://www.bing.com/search',
|
|
'http://www.dogpile.com/search/web',
|
|
'https://www.google.com/search',
|
|
'https://www.wolframalpha.com/input/',
|
|
), array(
|
|
'q' => 'hello world',
|
|
));
|
|
```
|