Make sure test.php isn't coming in from the include_path

This commit is contained in:
Rasmus Lerdorf 2013-08-02 11:47:12 -04:00
parent ce9169e360
commit 5753b74fab

View file

@ -3,7 +3,7 @@ test of larger than 8kb text file being parsed by require statement
--FILE--
<?php
file_put_contents('test.php',str_repeat('passed, ',1024));
require('test.php');
require('./test.php');
unlink('test.php');
?>
--EXPECT--