1
0
mirror of https://github.com/php/php-src.git synced 2026-04-17 21:11:02 +02:00
Files
archived-php-src/ext/standard/tests/general_functions/is_resource.phpt
Antony Dovgal ccd97f3a21 fix test names
2007-05-07 17:23:53 +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)