diff --git a/reference/info/functions/ini-get-all.xml b/reference/info/functions/ini-get-all.xml
index 09cf1eb32cab..3e0e60e6fd45 100644
--- a/reference/info/functions/ini-get-all.xml
+++ b/reference/info/functions/ini-get-all.xml
@@ -51,13 +51,16 @@
Returns &false; and raises an E_WARNING level error
if the extension doesn't exist.
-
+
When details is &true; (default) the array will
contain global_value (set in
&php.ini;), local_value (perhaps set with
- ini_set or &htaccess;), and
+ ini_set or &htaccess;),
+ builtin_default_value (the built-in default value of the
+ directive, or &null; if it has none, independent of values set in
+ &php.ini;, on the command line, or at runtime), and
access (the access level).
-
+
When details is &false; the value will be the
current value of the option.
@@ -74,6 +77,29 @@
+
+ &reftitle.changelog;
+
+
+
+
+ &Version;
+ &Description;
+
+
+
+
+ 8.6.0
+
+ The builtin_default_value element was added to the
+ details array returned for each directive.
+
+
+
+
+
+
+
&reftitle.examples;
@@ -96,6 +122,7 @@ Array
(
[global_value] => 100000
[local_value] => 100000
+ [builtin_default_value] => 100000
[access] => 7
)
@@ -103,6 +130,7 @@ Array
(
[global_value] => 100000
[local_value] => 100000
+ [builtin_default_value] => 100000
[access] => 7
)
@@ -113,6 +141,7 @@ Array
(
[global_value] => 0
[local_value] => 0
+ [builtin_default_value] => 0
[access] => 6
)
@@ -120,6 +149,7 @@ Array
(
[global_value] => 1
[local_value] => 1
+ [builtin_default_value] => 1
[access] => 4
)