From 52b94bc52ebb99da14835f8999aa7b7b3cf2d92e Mon Sep 17 00:00:00 2001 From: Peter Cowburn Date: Fri, 17 Apr 2015 14:14:55 +0000 Subject: [PATCH] Add some ini keys (doc bug #55727) -- Patch by Pasindu (ppasindud@gmail.com) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@336561 c90b9560-bf6c-de11-be94-00142212c4b1 --- .../filesystem/functions/parse-ini-file.xml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/reference/filesystem/functions/parse-ini-file.xml b/reference/filesystem/functions/parse-ini-file.xml index f5265fbfe1..ba868211c9 100644 --- a/reference/filesystem/functions/parse-ini-file.xml +++ b/reference/filesystem/functions/parse-ini-file.xml @@ -150,6 +150,9 @@ phpversion[] = "5.0" phpversion[] = "5.1" phpversion[] = "5.2" phpversion[] = "5.3" + +urls[svn] = "http://svn.php.net" +urls[git] = "http://git.php.net" ]]> @@ -196,6 +199,12 @@ Array [3] => 5.3 ) + [urls] => Array + ( + [svn] => http://svn.php.net + [git] => http://git.php.net + ) + ) Array ( @@ -222,6 +231,12 @@ Array [3] => 5.3 ) + [urls] => Array + ( + [svn] => http://svn.php.net + [git] => http://git.php.net + ) + ) ) @@ -288,7 +303,7 @@ echo '(loaded) magic_quotes_gpc = ' . yesno(get_cfg_var('magic_quotes_gpc')) . P ini files. These include: null, yes, no, true, false, on, off, none. Values null, off, no and false result in "". Values on, yes and true result in "1". - Characters ?{}|&~![()^" must not be used anywhere in + Characters ?{}|&~!()^" must not be used anywhere in the key and have a special meaning in the value.