From:             frederes at free dot fr
Operating system: Gentoo 2006
PHP version:      5.2.6RC2
PHP Bug Type:     *General Issues
Bug description:  parse_ini_file() parsing error with character '$'

Description:
------------
when character '$' is present in a value string , parse_ini_file() return
a warning/error and cut the value string before the $
so data result is wrong !

Reproduce code:
---------------
<?php
$ini_array = parse_ini_file("test.ini");
print_r($ini_array);
?>

test.ini file content :

toto = aaa$bbb

Expected result:
----------------
Array ( [toto] => aaa$bbb)

Actual result:
--------------
Warning: Error parsing test.ini on line 8 in parse_ini.php on line 2
Array ( [toto] => aaa)

-- 
Edit bug report at http://bugs.php.net/?id=44544&edit=1
-- 
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=44544&r=trysnapshot52
Try a CVS snapshot (PHP 5.3): 
http://bugs.php.net/fix.php?id=44544&r=trysnapshot53
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=44544&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=44544&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=44544&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=44544&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=44544&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=44544&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=44544&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=44544&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=44544&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=44544&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=44544&r=globals
PHP 4 support discontinued:   http://bugs.php.net/fix.php?id=44544&r=php4
Daylight Savings:             http://bugs.php.net/fix.php?id=44544&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=44544&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=44544&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=44544&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=44544&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=44544&r=mysqlcfg

Reply via email to