本文介绍了如何使用PHP读取自定义格式的配置文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想使用PHP解析以下类型的格式化配置文件。
config ' 环境''MyInfo'
选项 ' 名称''0'
选项 ' 移动''0'
选项 ' EMAIL''0'
如果我们使用parse_ini_file()函数,那么它将需要特定格式的ini文件。请建议如何解析这些文件。
Regds
解决方案
Hi,
I want to parse following type of formatted config file using PHP.
config 'Environment' 'MyInfo' option 'Name' '0' option 'Mobile' '0' option 'EMAIL' '0'
if we use parse_ini_file() function then it would require ini file in specific format. Please suggest how to parse such files.
Regds
解决方案
这篇关于如何使用PHP读取自定义格式的配置文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!