在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