ID: 44575
Updated by: [EMAIL PROTECTED]
Reported By: letssurf at gmail dot com
-Status: Open
+Status: Assigned
Bug Type: Filesystem function related
Operating System: Linux 2.6.9-34
PHP Version: 5.3CVS-2008-03-31 (snap)
-Assigned To:
+Assigned To: helly
New Comment:
Yes, that's why I didn't bogus this. Propably we could allow # as
comment too, but I'd still reserve it for #if..#else..#endif style
constructs. Marcus, what's the deal with that?
Previous Comments:
------------------------------------------------------------------------
[2008-04-02 09:44:51] letssurf at gmail dot com
true.
Shouldn't the function either report a parse error or using them as
comments.
------------------------------------------------------------------------
[2008-04-02 09:33:44] [EMAIL PROTECTED]
Just FYI: # is not a comment in ini files. ; is.
------------------------------------------------------------------------
[2008-03-31 09:29:31] letssurf at gmail dot com
Description:
------------
Any lines with comments starting with a # cause ini parsing to stop.
Reproduce code:
---------------
-- File: config.ini --
; this is a comment
[section1]
# this is a comment
name = value
# this a comment
-- File: test.php --
<?php
$ini = parse_ini_file('config.ini', true);
print_r($ini);
Expected result:
----------------
Array ( [section1] => Array ( [name] => value ) )
Actual result:
--------------
Array ( [section1] => Array ( ) )
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=44575&edit=1