From afc1c97d4795a8e293b4e1235326aea88c7e89b9 Mon Sep 17 00:00:00 2001 From: Damien Seguy Date: Fri, 29 Aug 2003 12:03:13 +0000 Subject: [PATCH] include() is case INsensitive on Windows git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@139099 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/control-structures.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/language/control-structures.xml b/language/control-structures.xml index 0a8dcc4d1c..7b0a5b6515 100644 --- a/language/control-structures.xml +++ b/language/control-structures.xml @@ -1,5 +1,5 @@ - + Control Structures @@ -1461,7 +1461,7 @@ echo $bar; // prints 1 and 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 + <function>require_once</function> is case insensitive on Windows &warn.no-win32-fopen-wrapper; - See also: require, + See also require, include, include_once, get_required_files, - get_included_files, readfile, - and virtual. + get_included_files, readfile, and + virtual. @@ -1521,7 +1521,7 @@ require_once("A.php"); // this will include a.php again on Windows! and 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 + <function>include_once</function> is case insensitive on Windows