mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-21 19:41:17 +00:00
19 lines
390 B
PHP
19 lines
390 B
PHP
<?php
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
use Curl\MultiCurl;
|
|
|
|
$multi_curl = new MultiCurl();
|
|
|
|
$multi_curl->addGet('https://www.google.com/search', array(
|
|
'q' => 'hello world',
|
|
));
|
|
$multi_curl->addGet('https://duckduckgo.com/', array(
|
|
'q' => 'hello world',
|
|
));
|
|
$multi_curl->addGet('https://www.bing.com/search', array(
|
|
'q' => 'hello world',
|
|
));
|
|
|
|
$multi_curl->start();
|