php-src/tests/lang/bug32924.phpt

15 lines
255 B
Plaintext
Raw Normal View History

2005-05-04 16:39:09 +00:00
--TEST--
Bug #32924 (prepend does not add file to included files)
--INI--
2007-06-18 07:31:45 +00:00
include_path={PWD}
auto_prepend_file=inc.inc
2005-05-04 16:39:09 +00:00
--FILE--
<?php
2007-06-18 07:31:45 +00:00
include_once(dirname(__FILE__).'/inc.inc');
require_once(dirname(__FILE__).'/inc.inc');
2005-05-04 16:39:09 +00:00
?>
END
--EXPECT--
Included!
END