mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-22 02:30:48 +00:00
18 lines
335 B
PHP
18 lines
335 B
PHP
<?php
|
|
require '../src/Curl/Curl.php';
|
|
require '../src/Curl/MultiCurl.php';
|
|
|
|
use \Curl\Curl;
|
|
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();
|