From 8be263e2593160592f2a2b363fce018e5a1e846f Mon Sep 17 00:00:00 2001 From: Gabor Hojtsy Date: Mon, 29 Jul 2002 20:57:18 +0000 Subject: [PATCH] Adding case sensitivity note to include_once and require_once git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@90352 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/control-structures.xml | 34 ++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/language/control-structures.xml b/language/control-structures.xml index 877774da1e..94c01bcde7 100644 --- a/language/control-structures.xml +++ b/language/control-structures.xml @@ -1,5 +1,5 @@ - + Control Structures @@ -1357,6 +1357,22 @@ echo $bar; // prints 1 require_once was added in PHP 4.0.1pl2 + + + Be aware, that the behaviour of require_once + amd include_once may not be what you expect + on a non case sensitive operating system (such as Windows). + + <function>require_once</function> is case sensitive + + + + + + &warn.no-win32-fopen-wrapper; See also: require, @@ -1395,6 +1411,22 @@ echo $bar; // prints 1 include_once was added in PHP 4.0.1pl2 + + + Be aware, that the behaviour of include_once + amd require_once may not be what you expect + on a non case sensitive operating system (such as Windows). + + <function>include_once</function> is case sensitive + + + + + + &warn.no-win32-fopen-wrapper; See also include,