php-src/tests/lang/bug32924.phpt
2019-03-15 22:55:30 +01:00

15 lines
234 B
PHP

--TEST--
Bug #32924 (prepend does not add file to included files)
--INI--
include_path={PWD}
auto_prepend_file=inc.inc
--FILE--
<?php
include_once(__DIR__.'/inc.inc');
require_once(__DIR__.'/inc.inc');
?>
END
--EXPECT--
Included!
END