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.