mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-19 06:12:03 +00:00
16 lines
292 B
PHP
16 lines
292 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();
|