1
0
mirror of https://github.com/php/php-src.git synced 2026-04-20 22:41:20 +02:00
Files
archived-php-src/ext/standard/tests/general_functions/is_resource.phpt
Antony Dovgal 1f65545121 fix test names
2007-05-07 18:03:01 +00:00

11 lines
180 B
PHP

--TEST--
Bug #27822 (is_resource() returns TRUE for closed resources)
--FILE--
<?php
$f = fopen(__FILE__, 'r');
fclose($f);
var_dump(is_resource($f));
?>
--EXPECT--
bool(false)