ID:              29539
 User updated by: amir at foresthc dot com
 Reported By:     amir at foresthc dot com
-Status:          Open
+Status:          Closed
 Bug Type:        Feature/Change Request
 PHP Version:     Irrelevant
 New Comment:

The requested behaviour is already implemeted as described above...


Previous Comments:
------------------------------------------------------------------------

[2004-08-06 11:51:50] amir at foresthc dot com

And that is actually the *current* behaviour...

I can't seem to find it documented anywhere.

Well I guess we can close the bug...

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

[2004-08-06 08:44:51] [EMAIL PROTECTED]

A boolean argument to what? IMO if this is to be added, you should
specify your settings like this:
[section]
    key1 = value1
    key2[] = value2
    key2[] = value3

That makes it clear and also addresses the BC issue.

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

[2004-08-05 17:36:01] amir at foresthc dot com

Description:
------------
It would be nice if the parse_ini_file() would return multiple keys
with the same name as an array, instead of just overwriting the
previous one.

I know there is one previous "bug report" for this request, but I was
affraid that just adding a comment to a closed bug might go
un-noticed.

Regarding BC, but I guess that can be addressed by a second optional
boolean argument.

10x anyway.

Reproduce code:
---------------
[section]
    key1 = value1
    key2 = value2
    key2 = value3


Expected result:
----------------
Array
(
    [section] => Array
        (
            [key1] => "value1"
            [key2] => Array
                (
                    [0] => "value2"
                    [1] => "value3"
                )
        )
)

Actual result:
--------------
Array
(
    [section] => Array
        (
            [key1] => "value1"
            [key2] => "value3"
        )
)


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


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

Reply via email to