1
0
mirror of https://github.com/php/php-src.git synced 2026-04-14 03:22:58 +02:00
Files
archived-php-src/tests/lang/bug32924.phpt
2018-10-14 19:45:12 +02:00

15 lines
254 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(dirname(__FILE__).'/inc.inc');
require_once(dirname(__FILE__).'/inc.inc');
?>
END
--EXPECT--
Included!
END