Your IP : 216.73.216.48


Current Path : /hdd/hdd12/install/php/php-7.4.32/Zend/tests/
Upload File :
Current File : //hdd/hdd12/install/php/php-7.4.32/Zend/tests/bug68887.phpt

--TEST--
Bug #68887 (resources are not freed correctly)
--FILE--
<?php
fclose(fopen("php://temp","w+"));
$count = count(get_resources());
fclose(fopen("php://temp","w+"));
var_dump(count(get_resources()) == $count);
fclose(fopen("php://temp","w+"));
var_dump(count(get_resources()) == $count);
?>
--EXPECT--
bool(true)
bool(true)