mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
15 lines
349 B
PHP
15 lines
349 B
PHP
--TEST--
|
|
GH-20678 (resource created by GlobalIterator crashes when it is called with fclose())
|
|
--CREDITS--
|
|
chongwick
|
|
--FILE--
|
|
<?php
|
|
$iter = new GlobIterator(__DIR__ . '/*.abcdefghij');
|
|
$resources = get_resources();
|
|
$resource = end($resources);
|
|
fclose($resource);
|
|
?>
|
|
--EXPECTF--
|
|
|
|
Warning: fclose(): %d is not a valid stream resource in %s on line %d
|