
| Path : /usr/src/php/ext/standard/tests/file/ |
| Current File : //usr/src/php/ext/standard/tests/file/bug37864.phpt |
--TEST-- Bug #37864 (file_get_contents() leaks on empty file) --FILE-- <?php $tmpfname = tempnam(sys_get_temp_dir(), "emptyfile"); var_dump(file_get_contents($tmpfname)); echo "done.\n"; unlink($tmpfname); ?> --EXPECT-- string(0) "" done.