PHP : How to understand bitmask value of access from ini_get_all function
Posted
by justjoe
on Stack Overflow
See other posts from Stack Overflow
or by justjoe
Published on 2010-04-17T17:48:45Z
Indexed on
2010/04/17
17:53 UTC
Read the original article
Hit count: 454
i'm start to use ini_get_all function to retrieve all configuration option on a shared host server. in the end i got this chunk of array :
[allow_call_time_pass_reference] => Array
(
[global_value] => 1
[local_value] => 1
[access] => 6
)
[allow_url_fopen] => Array
(
[global_value] => 1
[local_value] => 1
[access] => 4
)
The PHP manual just give descripstion :
It's possible for a directive to have multiple access levels, which is why access shows the appropriate bitmask values.
so, can anybody explain about 'access' ? ans how to understand its bitmask values ?
© Stack Overflow or respective owner