mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
18 lines
289 B
PHP
18 lines
289 B
PHP
--TEST--
|
|
curl_multi_close
|
|
--CREDITS--
|
|
Stefan Koopmanschap <stefan@php.net>
|
|
#testfest Utrecht 2009
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('curl')) print 'skip';
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$ch = curl_multi_init();
|
|
curl_multi_close($ch);
|
|
var_dump($ch);
|
|
?>
|
|
--EXPECT--
|
|
object(CurlMultiHandle)#1 (0) {
|
|
}
|