mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
16 lines
244 B
PHP
16 lines
244 B
PHP
--TEST--
|
|
curl_multi_close
|
|
--CREDITS--
|
|
Stefan Koopmanschap <stefan@php.net>
|
|
#testfest Utrecht 2009
|
|
--EXTENSIONS--
|
|
curl
|
|
--FILE--
|
|
<?php
|
|
$ch = curl_multi_init();
|
|
curl_multi_close($ch);
|
|
var_dump($ch);
|
|
?>
|
|
--EXPECT--
|
|
object(CurlMultiHandle)#1 (0) {
|
|
}
|