mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-17 19:45:38 +00:00
14 lines
251 B
PHP
14 lines
251 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', [
|
|
'page' => $i,
|
|
]);
|
|
// TODO: Do something with result $curl->response.
|
|
}
|