mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
15 lines
255 B
PHP
15 lines
255 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
|