mirror of
https://github.com/php/php-src.git
synced 2025-08-17 14:38:49 +02:00
19 lines
309 B
PHP
19 lines
309 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);
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
resource(%d) of type (Unknown)
|
|
===DONE===
|