1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/ext/spl/tests/bug81691.phpt
2025-03-24 22:54:34 +00:00

16 lines
322 B
PHP

--TEST--
Bug #81691 fclose on SplFileObject stream
--FILE--
<?php
$obj = new SplFileObject(__FILE__);
$resources = get_resources();
fclose(end($resources));
var_dump($obj->fgets());
?>
--EXPECTF--
Warning: fclose(): cannot close the provided stream, as it must not be manually closed in %s on line %d
string(6) "<?php
"