MFH: Allow underscore at start of labels as underscore has no meaning here

(fixes #44842)
This commit is contained in:
Arnaud Le Blanc 2008-08-17 21:55:26 +00:00
parent 1defd7a9e2
commit dee3bb2371
3 changed files with 20 additions and 1 deletions

2
NEWS
View File

@ -38,6 +38,8 @@ PHP NEWS
newline). (Arnaud)
- Fixed bug #45044 (relative paths not resolved correctly). (Dmitry)
- Fixed bug #44925 (preg_grep() modifies input array). (Nuno)
- Fixed bug #44842 (parse_ini_file keys that start/end with underscore).
(Arnaud)
- Fixed bug #44100 (Inconsistent handling of static array declarations with
duplicate keys). (Dmitry)
- Fixed bug #43817 (opendir() fails on Windows directories with parent

View File

@ -312,7 +312,7 @@ NEWLINE ("\r"|"\n"|"\r\n")
TABS_AND_SPACES [ \t]
WHITESPACE [ \t]+
CONSTANT [a-zA-Z][a-zA-Z0-9_]*
LABEL [a-zA-Z0-9][a-zA-Z0-9._-]*
LABEL [a-zA-Z0-9_][a-zA-Z0-9._-]*
TOKENS [:,.\[\]"'()|^&+-/*=%$!~<>?@{}]
OPERATORS [&|~()!]
DOLLAR_CURLY "${"

View File

@ -94,6 +94,15 @@ $ini = "[section1]\nname = value";
file_put_contents($filename, $ini);
var_dump(parse_ini_file($filename, true));
/* #44842, labels starting with underscore */
$ini = <<<'INI'
foo=bar1
_foo=bar2
foo_=bar3
INI;
file_put_contents($filename, $ini);
var_dump(parse_ini_file($filename, true));
@unlink($filename);
echo "Done\n";
?>
@ -182,4 +191,12 @@ array(1) {
string(5) "value"
}
}
array(3) {
["foo"]=>
string(4) "bar1"
["_foo"]=>
string(4) "bar2"
["foo_"]=>
string(4) "bar3"
}
Done