diff --git a/reference/info/functions/ini-get-all.xml b/reference/info/functions/ini-get-all.xml index 09cf1eb32cab..be011b81edef 100644 --- a/reference/info/functions/ini-get-all.xml +++ b/reference/info/functions/ini-get-all.xml @@ -55,7 +55,10 @@ 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). @@ -74,6 +77,31 @@ + + &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 +124,7 @@ Array ( [global_value] => 100000 [local_value] => 100000 + [builtin_default_value] => 100000 [access] => 7 ) @@ -103,6 +132,7 @@ Array ( [global_value] => 100000 [local_value] => 100000 + [builtin_default_value] => 100000 [access] => 7 ) @@ -113,6 +143,7 @@ Array ( [global_value] => 0 [local_value] => 0 + [builtin_default_value] => 0 [access] => 6 ) @@ -120,6 +151,7 @@ Array ( [global_value] => 1 [local_value] => 1 + [builtin_default_value] => 1 [access] => 4 )