1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/ext/curl/tests/curl_close_basic.phpt
andy wharmby f3d407964e Fix cURL tests
2009-07-17 20:44:50 +00:00

20 lines
291 B
PHP

--TEST--
curl_close
--CREDITS--
Stefan Koopmanschap <stefan@php.net>
#testfest Utrecht 2009
--SKIPIF--
<?php
if (!extension_loaded('curl')) print 'skip';
?>
--FILE--
<?php
$ch = curl_init();
curl_close($ch);
var_dump($ch);
?>
===DONE===
--EXPECTF--
resource(%d) of type (Unknown)
===DONE===