|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-02-05 12:56 UTC] jani@php.net
[2010-02-05 12:57 UTC] jani@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 11:00:01 2025 UTC |
Description: ------------ A Slash in ini key leads to an error on mac, pc works. No exception thrown. Reproduce code: --------------- --- From manual page: function.parse-ini-string#Notes --- try { $arr = parse_ini_string('ActionTheme.Member/Search = 1'); print_r($arr); } catch (Exception $e) { echo $e->getMessage(); } Expected result: ---------------- Array ( [ActionTheme.Member/Search] => 1 ) Actual result: -------------- "nothing" not even an empty array