mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-19 23:42:44 +00:00
20 lines
382 B
PHP
20 lines
382 B
PHP
<?php
|
|
require __DIR__ . '/vendor/autoload.php';
|
|
|
|
use \Curl\MultiCurl;
|
|
|
|
$multi_curl = new MultiCurl();
|
|
|
|
$multi_curl->addPost('https://httpbin.org/post', array(
|
|
'to' => 'alice',
|
|
'subject' => 'hi',
|
|
'body' => 'hi Alice',
|
|
));
|
|
$multi_curl->addPost('https://httpbin.org/post', array(
|
|
'to' => 'bob',
|
|
'subject' => 'hi',
|
|
'body' => 'hi Bob',
|
|
));
|
|
|
|
$multi_curl->start();
|