在Python中,您可以解析.ini文件并访问单个值,如下所示:
myini.ini
[STRINGS]
mystring = fooooo
value = foo_bar
script.py
import configparser
config = configparser.ConfigParser()
# ----------------------------------------------------------------------
config.read("myini.ini")
test = config["STRINGS"]["mystring"]
print (test) #-> OUTPUT: fooooo
我怎样才能在PHP中做同样的事情?不幸的是,我找不到任何例子.
解决方法:
不用担心,解析.ini文件是一种标准方法. (参见PHP docs中的parse_ini_file).
使用您的文件作为此示例的基础:
myini.ini
[STRINGS]
mystring = fooooo
value = foo_bar
test.PHP的
$ini_array = parse_ini_file("myini.ini");
print_r($ini_array); # prints the entire parsed .ini file
print($ini_array['mystring']); #prints "fooooo"
请注意,默认情况下,parse_ini_file会忽略部分并将所有ini设置刷新到同一对象中.如果您希望在python示例中按部门划分范围,则为process_sections参数(第二个参数)传递true.
test2.PHP
$ini_array = parse_ini_file("myini.ini", true /* will scope sectionally */);
print($ini_array['mystring']); #prints nothing
print($ini_array['STRINGS']['mystring']); #prints fooooo
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。