|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patchesyaf-2.1.9.patch (last revision 2012-03-23 16:30 UTC by littlemiaor at gmail dot com)Pull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-03-24 02:43 UTC] laruence@php.net
-Assigned To:
+Assigned To: laruence
[2012-03-24 02:48 UTC] laruence@php.net
[2012-03-24 02:48 UTC] laruence@php.net
[2012-03-24 02:48 UTC] laruence@php.net
-Status: Assigned
+Status: Closed
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 20 12:00:02 2025 UTC |
Description: ------------ Can't remove item when using unset() with a Yaf_Config_Simple instance Test script: --------------- <?php $config = new Yaf_Config_Simple(array( 'foo' => 'bar', ), false); unset($config['foo']); print_r($config); Expected result: ---------------- Yaf_Config_Simple Object ( [_config:protected] => Array ( ) [_readonly:protected] => ) Actual result: -------------- Yaf_Config_Simple Object ( [_config:protected] => Array ( [foo] => bar ) [_readonly:protected] => )