mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-20 08:11:44 +00:00
19 lines
388 B
PHP
19 lines
388 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();
|