summaryrefslogtreecommitdiff
path: root/tests/lang/bug32924.phpt
blob: 289dd1b829c4dc739b809df65730933a90966537 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Bug #32924 (prepend does not add file to included files)
--INI--
auto_prepend_file=tests/lang/inc.inc
--FILE--
<?php 
include_once('tests/lang/inc.inc');
require_once('tests/lang/inc.inc');
?>
END
--EXPECT--
Included!
END