lizus/php-curl

php curl class

v0.0.1 2020-07-23 08:30 UTC

This package is auto-updated.

Last update: 2024-04-29 04:53:20 UTC


README

php curl class

easy way to custom useragent

define('PHPCURL_UA', 'your ua');

easy way to custom cookie

define('PHPCURL_COOKIE', 'your cookie');

use sample

use \Lizus\PHPCurl\PHPCurl;

$curl=new PHPCurl();
$data=$curl->get('some url');
var_dump($data);