|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-09-26 14:34 UTC] jaenecke at gmx dot li
[2002-09-26 15:37 UTC] goba@php.net
[2002-11-19 02:54 UTC] philip@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 21:00:02 2025 UTC |
Given a file test.ini like foo = BAR and parsing it in parse.php: define ( 'BAR', 'just any value' ); $ini = parse_ini_file ( 'test.ini' ); print_r ( $ini ); will result in Array ( [foo] => just any value ) This is maybe a quite useful behaviour but should at least be mentioned in the documentation. I would prefer a third argument added to the function which could be used to turn this feature off.