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