mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-19 19:51:42 +00:00
16 lines
294 B
PHP
16 lines
294 B
PHP
<?php
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
use Curl\MultiCurl;
|
|
|
|
$multi_curl = new MultiCurl();
|
|
|
|
$multi_curl->addDelete('https://httpbin.org/delete', array(
|
|
'id' => '123',
|
|
));
|
|
$multi_curl->addDelete('https://httpbin.org/delete', array(
|
|
'id' => '456',
|
|
));
|
|
|
|
$multi_curl->start();
|