|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-02-03 04:54 UTC] sniper@php.net
[2005-02-11 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 01 12:00:01 2025 UTC |
Description: ------------ parse_ini_file does not recognize value "]" (ascii code: 5d). so, multibyte charcters including code "5d" is not recognized. for example, Japanese Shift-JIS code "935d", "965d"..etc. Reproduce code: --------------- test.php <?php $ini = parse_ini_file('test.ini'); print_r($ini); ?> test.ini [test] ;value is code "935d" (Shift-JIS) value="?]" Expected result: ---------------- Array ( [value] => ?] ) #of cource, the value of [value] is code "935d". Actual result: -------------- Array ( )