是否可以使用设置文件创建数组?
// Parse config file $settings = parse_ini_file("settings");
例如.设置文件如下所示:
[States] east = "Michigan,New York,Minnesota"
想要创建一个像这样的数组:
array('Michigan','New York','Minnesota')
它返回一个关联数组.然后,要将东州分解成一个数组,你可以这么做:
$eastStates = explode(‘,’,$ini [‘States’] [‘east’]);如果您的数据确实是您所描述的格式.请注意,您可以以ini格式创建真正的数组,请参阅 the documentation.
原文链接:https://www.f2er.com/php/131067.html$eastStates = explode(‘,’,$ini [‘States’] [‘east’]);如果您的数据确实是您所描述的格式.请注意,您可以以ini格式创建真正的数组,请参阅 the documentation.