|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-01-09 00:06 UTC] ajf@php.net
-Package: Feature/Change Request
+Package: Filesystem function related
[2021-09-27 13:58 UTC] cmb@php.net
-Status: Open
+Status: Not a bug
-Type: Feature/Change Request
+Type: Bug
-Assigned To:
+Assigned To: cmb
[2021-09-27 13:58 UTC] cmb@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 15:00:01 2025 UTC |
Description: ------------ While using parse_ini_file there is no possibility to insert double-quote in the value. Seems function completely removes nested quotes and da data between them. Standard for INI file "quote quoting" method is doubling (see MS Excell, Thunderbird, Outlook, GMail programs which could create INI files). But it does not work with parse_ini_file. Reproduce code: --------------- --file.ini-- key = "test""quotes" --test.php-- print_r(parse_ini_file('file.ini')); Expected result: ---------------- test"quotes Actual result: -------------- testquotes