mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-18 20:02:53 +00:00
17 lines
285 B
PHP
17 lines
285 B
PHP
<?php
|
|
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
use Curl\MultiCurl;
|
|
|
|
$multi_curl = new MultiCurl();
|
|
|
|
$multi_curl->addDelete('https://httpbin.org/delete', [
|
|
'id' => '123',
|
|
]);
|
|
$multi_curl->addDelete('https://httpbin.org/delete', [
|
|
'id' => '456',
|
|
]);
|
|
|
|
$multi_curl->start();
|