|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-08-03 07:50 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 18:00:01 2025 UTC |
Description: ------------ directory www |- test.php |- test | |- a.php | |- b.php | |- test | | |- c.php Reproduce code: --------------- test.php <? require_once('test/a.php'); ?> a.php <? require_once('test/c.php'); ?> c.php <? require_once('../b.php'); ?> Expected result: ---------------- require Actual result: -------------- Warning: require_once(../b.php) [function.require-once]: failed to open stream: No such file or directory in E:\testweb\test\test\c.php on line 1 Fatal error: require_once() [function.require]: Failed opening required '../b.php' (include_path='.;C:\php5\pear') in E:\testweb\test\test\c.php on line 1