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,