From 5d6efbb87955ecf6cb7e4ff083bb5a6df424c9ed Mon Sep 17 00:00:00 2001 From: Philip Olson Date: Tue, 19 Nov 2002 09:22:29 +0000 Subject: [PATCH] include_path: Using php.ini-dist defaults in examples. Explain what . is a little more. And a little cleanup. This also closes bug #19698 git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@104865 c90b9560-bf6c-de11-be94-00142212c4b1 --- chapters/config.xml | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/chapters/config.xml b/chapters/config.xml index d4e1327506..3dcfcfaa3f 100644 --- a/chapters/config.xml +++ b/chapters/config.xml @@ -1,5 +1,5 @@ - + Configuration @@ -916,24 +916,31 @@ include_path = ".;c:\php\lib" files. The format is like the system's PATH environment variable: a list of directories separated with a colon in UNIX or semicolon in Windows. + + UNIX include_path - + - + + + Windows include_path - + - + - The default value for this directive is . - (only the current directory). + + + Using a . in the include path allows for + relative includes as it means the current directory. +