mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-18 04:10:50 +00:00
13 lines
255 B
PHP
13 lines
255 B
PHP
<?php
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
use Curl\Curl;
|
|
|
|
$curl = new Curl();
|
|
for ($i = 1; $i <= 10; $i++) {
|
|
$curl->get('https://httpbin.org/get', array(
|
|
'page' => $i,
|
|
));
|
|
// TODO: Do something with result $curl->response.
|
|
}
|