a |
akjfladskjfla
echo $_SERVER['PHP_SELF'],'
';
echo 'I am A
';
?>
|
b.php |
include 'a';
echo $_SERVER['PHP_SELF'],'
';
echo 'I am B
';
?>
|
akjfladskjfla
/webapp/codesnipe/b.php I am A /webapp/codesnipe/b.php I am B |
Warning: include(a) [function.include]: failed to open stream: No such file or directory in C:/xampp/htdocs/webapp/codesnipe/b.php on line 3 Warning: include() [function.include]: Failed opening 'a' for inclusion (include_path='.;C:/xampp/php/pear/') in C:/xampp/htdocs/webapp/codesnipe/b.php on line 3 /webapp/codesnipe/b.php I am B |
Warning: require(a) [function.require]: failed to open stream: No such file or directory in C:/xampp/htdocs/webapp/codesnipe/b.php on line 3 Fatal error: require() [function.require]: Failed opening required 'a' (include_path='.;C:/xampp/php/pear/') in C:/xampp/htdocs/webapp/codesnipe/b.php on line 3 |
indexa.php |
include_once 'indexb.php';
echo $_SERVER['PHP_SELF'],'
';
echo 'I am A
';
?>
|
indexb.php |
include_once 'indexa.php';
include_once 'indexc.php';
echo $_SERVER['PHP_SELF'],'
';
echo 'I am B
';
?>
|
indexc.php |
include_once 'indexb.php';
include_once 'indexa.php';
echo $_SERVER['PHP_SELF'],'
';
echo 'I am C
';
?>
|
/webapp/codesnipe/indexa.php I am C /webapp/codesnipe/indexa.php I am B /webapp/codesnipe/indexa.php I am A |
indexa.php |
include_once 'include/indexb.php';
echo $_SERVER['PHP_SELF'],'
';
echo 'I am A
';
?>
|
indexb.php |
include_once './indexc.php';
echo $_SERVER['PHP_SELF'],'
';
echo 'I am B
';
?>
|
indexc.php |
echo $_SERVER['PHP_SELF'],'
';
echo 'I am C
';
?>
|
Warning: include_once(./indexc.php) [function.include-once]: failed to open stream: No such file or directory in C:/xampp/htdocs/webapp/codesnipe/include/indexb.php on line 3 Warning: include_once() [function.include]: Failed opening './indexc.php' for inclusion (include_path='.;C:/xampp/php/pear/') in C:/xampp/htdocs/webapp/codesnipe/include/indexb.php on line 3 /webapp/codesnipe/indexa.php I am B /webapp/codesnipe/indexa.php I am A |