Edit report at https://bugs.php.net/bug.php?id=44936&edit=1

 ID:                 44936
 Comment by:         info at ria-developer dot eu
 Reported by:        romain dot dorgueil at sensio dot net
 Summary:            BC break: ini_set() changes 'access' value
 Status:             No Feedback
 Type:               Bug
 Package:            *General Issues
 Operating System:   linux 2.6.22-14
 PHP Version:        5.2CVS only
 Assigned To:        iliaa
 Block user comment: N
 Private report:     N

 New Comment:

I also have the same problem in PHP 5.2.17 version. Does anyone know what means 
"63" in key "access" after call ini_get_all()? Thanks for help in advance.
According to documentation 
(http://www.php.net/manual/en/configuration.changes.modes.php) there sholuld be 
1,6,4 or 7.


Previous Comments:
------------------------------------------------------------------------
[2008-10-26 01:00:00] php-bugs at lists dot php dot net

No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".

------------------------------------------------------------------------
[2008-09-08 20:06:18] [email protected]

Why it is a problem? As far as I can see, there was a change that now uses some 
previously unused bits in the access mask, but why it is a bug? Does something 
that worked before doesn't work now? 

------------------------------------------------------------------------
[2008-05-26 20:31:31] [email protected]

Ilia, I think this is the patch that causes the side-effect:

http://cvs.php.net/viewvc.cgi/ZendEngine2/zend_ini.c?r1=1.39.2.2.2.26&r2=1.39.2.2.2.27&pathrev=PHP_5_2

------------------------------------------------------------------------
[2008-05-07 18:11:18] romain dot dorgueil at sensio dot net

Description:
------------
ini_set changes the 'access' parameter of configuration entry to 63 without any 
reason.

This behaviour did not exist in previous versions and is very easy to 
reproduce. It is not documented and not in the php 5.6.3 changelog.

Reproduce code:
---------------
<?php
define('CONFIG_ENTRY', 'magic_quotes_runtime');

function dumpini()
{
  $configs = ini_get_all();
  echo 'access value: '.$configs[CONFIG_ENTRY]['access']."\n";
}

dumpini();

echo 'ini_set(\''.CONFIG_ENTRY.'\', 0);'."\n";
ini_set(CONFIG_ENTRY, 0);

dumpini();


Expected result:
----------------
access value: 7
ini_set('magic_quotes_runtime', 0);
access value: 7


Actual result:
--------------
access value: 7
ini_set('magic_quotes_runtime', 0);
access value: 63



------------------------------------------------------------------------



-- 
Edit this bug report at https://bugs.php.net/bug.php?id=44936&edit=1

Reply via email to