mirror of
https://github.com/php/php-src.git
synced 2024-12-26 02:10:46 +08:00
16 lines
257 B
PHP
16 lines
257 B
PHP
--TEST--
|
|
include()ing files should not raise "too many open files" error
|
|
--PHPDBG--
|
|
r
|
|
q
|
|
--EXPECTF--
|
|
[Successful compilation of %s]
|
|
prompt> [Script ended normally]
|
|
prompt>
|
|
--FILE--
|
|
<?php
|
|
|
|
for ($i = 0; $i < 25000; ++$i) {
|
|
include __DIR__.'/empty.inc';
|
|
}
|