mirror of
https://github.com/php/php-src.git
synced 2026-04-24 08:28:26 +02:00
16 lines
288 B
PHP
16 lines
288 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(): %d is not a valid stream resource in %s on line %d
|
|
string(6) "<?php
|
|
"
|