Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用parse_ini_file函数解析一个 ini 文件。
保留字符是?{}|&~![()^.
?{}|&~![()^
$PHP 数组可以有带有美元符号的键,但是为什么这个函数不能从具有字符的 ini 文件中生成一个带有键的数组呢?
$
可能是因为使用 $ 来指定 INI 变量;如果未在变量的上下文中使用,则会导致语法错误
${...}用作值将看起来
${...}
例如:
<?php print_r(parse_ini_string(' php_ext_dir = ${extension_dir} operating_system = ${OS} ')); ?> Array ( [php_ext_dir] => ./ext/ [operating_system] => Windows_NT )