mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-18 14:41:49 +00:00
13 lines
253 B
PHP
13 lines
253 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.
|
|
}
|