Cool working curl extension for Yii2, including RESTful support:
- POST
- GET
- HEAD
- PUT
- PATCH
- DELETE
- Yii2
- PHP 5.4+
- Curl and php-curl installed
The preferred way to install this extension is through composer.
php composer.phar require --prefer-dist linslin/yii2-curl "*"
Once the extension is installed, simply use it in your code. The following example shows you how to handling a simple GET Request.
<?php
/**
* Yii2 test controller
*
* @category Web-yii2-example
* @package yii2-curl-example
* @author Nils Gajsek <info@linslin.org>
* @copyright 2013-2015 Nils Gajsek<info@linslin.org>
* @license http://opensource.org/licenses/MIT MIT Public
* @version 1.0.10
* @link http://www.linslin.org
*
*/
namespace app\controllers;
use yii\web\Controller;
use linslin\yii2\curl;
class TestController extends Controller
{
/**
* Yii action controller
*/
public function actions()
{
return [
'error' => [
'class' => 'yii\web\ErrorAction',
],
];
}
/**
* cURL GET example
*/
public function actionGetExample()
{
//Init curl
$curl = new curl\Curl();
//get http://example.com/
$response = $curl->get('http://example.com/');
}
/**
* cURL POST example with post body params.
*/
public function actionPostExample()
{
//Init curl
$curl = new curl\Curl();
//post http://example.com/
$response = $curl->setOption(
CURLOPT_POSTFIELDS,
http_build_query(array(
'myPostField' => 'value'
)
))
->post('http://example.com/');
}
/**
* cURL multiple POST example one after one
*/
public function actionMultipleRequest()
{
//Init curl
$curl = new curl\Curl();
//post http://example.com/
$response = $curl->setOption(
CURLOPT_POSTFIELDS,
http_build_query(array(
'myPostField' => 'value'
)
))
->post('http://example.com/');
//post http://example.com/, reset request before
$response = $curl->reset()
->setOption(
CURLOPT_POSTFIELDS,
http_build_query(array(
'myPostField' => 'value'
)
))
->post('http://example.com/');
}
/**
* cURL advanced GET example with HTTP status codes
*/
public function actionGetAdvancedExample()
{
//Init curl
$curl = new curl\Curl();
//get http://example.com/
$response = $curl->post('http://example.com/');
// List of status codes here http://en.wikipedia.org/wiki/List_of_HTTP_status_codes
switch ($curl->responseCode) {
case 'timeout':
//timeout error logic here
break;
case 200:
//success logic here
break;
case 404:
//404 Error logic here
break;
}
}
/**
* cURL timeout chaining/handling
*/
public function actionHandleTimeoutExample()
{
//Init curl
$curl = new curl\Curl();
//get http://www.google.com:81/ -> timeout
$response = $curl->post('http://www.google.com:81/');
// List of status codes here http://en.wikipedia.org/wiki/List_of_HTTP_status_codes
switch ($curl->responseCode) {
case 'timeout':
//timeout error logic here
break;
case 200:
//success logic here
break;
case 404:
//404 Error logic here
break;
}
}
/**
* cURL error handling
*/
public function actionHandleHostUknownExample()
{
//Init curl
$curl = new curl\Curl();
//get http://www.google.com:81/ -> timeout
$response = $curl->post('http://www.xyz-no-one-set.nope');
// List of curl error codes here https://curl.haxx.se/libcurl/c/libcurl-errors.html
switch ($curl->errorCode) {
case 6:
//host unkown example
break;
}
}
}
- Fixed PHP notice linslin#39.
- Added API attribute
responseCode [string|null]
which holds the HTTP response code. - Added API attribute
responseCharset [string|null]
which holds the response charset. - Added API attribute
responseLength [integer|null]
which holds the response length. - Added API attribute
errorCode
which holds the a integer code error like described here: https://curl.haxx.se/libcurl/c/libcurl-errors.html. - Fixed Issue https://github.com/linslin/Yii2-Curl/issues//36.
- Fixed Issue https://github.com/linslin/Yii2-Curl/issues//37 and removed exception throwing on curl fail. This allow the user to handle the error while using attribute
errorCode
.
- Added API method
setOptions([array])
which allows to setup multiple options at once. - Fixed Issue linslin#30.
- Fixed
getInfo([, int $opt = 0 ])
exception were cURL wasn't initialized before callinggetInfo($opt)
.
- Added
getInfo([, int $opt = 0 ])
method to retrieve http://php.net/manual/de/function.curl-getinfo.php data.
- Made
body
callback not depending on HTTP-Status codes anymore. You can retrievebody
data on any HTTP-Status now. - Fixed Issue linslin#19 where override default settings break options.
- Added timeout response handling.
$curl->responseCode = 'timeout'
CURLOPT_RETURNTRANSFER
is now set to true on default - linslin#18- Readme.md adjustments.
- Fixed override of user options. linslin#7
- Nice formatted PHP-examples.
- Moved
parent::init();
behavior into unitTest Controller.
- Added custom params support
- Added custom status code support
- Added POST-Param support and a readme example
- Removed "body" support at request functions. Please use "CURLOPT_POSTFIELDS" to setup a body now.
- Readme modifications
- Removed widget support
- Edited some spellings + added more examples into readme.md
- Official stable release