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