mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-19 01:21:33 +00:00
13 lines
251 B
PHP
13 lines
251 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.
|
|
}
|