php ini使用parse_ini_file创建数组

前端之家收集整理的这篇文章主要介绍了php ini使用parse_ini_file创建数组前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以使用设置文件创建数组?

在index.PHP文件中,它读取.ini文件

// 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

猜你在找的PHP相关文章