From: [EMAIL PROTECTED]
Operating system: linux 2.4.4/glibc 2.2.2
PHP version: 4.0CVS-2001-11-11
PHP Bug Type: Unknown/Other Function
Bug description: ini_get_all() does not display local values
I'm not sure if this is intended.
ini_get_all() does not display local values.
It should display active local values even if user has not modified values.
IMHO.
<pre>
<?php
print_r(ini_get_all());
?>
</pre>
displays
=========== begin ==========
Array
(
[allow_call_time_pass_reference] => Array
(
[global_value] => [local_value] => [access] => 6
)
[allow_url_fopen] => Array
(
[global_value] => 1
[local_value] => [access] => 7
)
[always_populate_raw_post_data] => Array
(
[global_value] => 0
[local_value] => [access] => 7
)
[arg_separator.input] => Array
(
[global_value] => ;&
[local_value] => [access] => 6
)
*SNIP*
===== end ======
--
Edit bug report at: http://bugs.php.net/?id=14022&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]