PHP parse_ini_file() 函数

返回上一级

PHP parse_ini_file() 函数解析一个配置文件(ini 文件),并以数组的形式返回其中的设置

函数原型

parse_ini_file(file,process_sections)

本函数可以用来读取您自己的应用程序的配置文件,与 php.ini 文件没有关系

有些保留字不能作为 ini 文件中的键名,包括:null、yes、no、true 和 false

字符 {}|&~![()" 也不能用在键名的任何地方

参数

参数 描述
file 必需。规定要检查的 ini 文件
process_sections 可选。如果设置为 TRUE,则返回一个多维数组,包括了配置文件中每一节的名称和设置
默认是 FALSE

范例

"test.ini" 的内容

[names]
me = Robert
you = Peter
[urls]
first = "http://www.example.com"
second = "https://www.twle.cn"

PHP 代码

<?php

print_r(parse_ini_file("test.ini"));

运行以上 PHP 范例,输出结果如下

Array(
[me] => Robert
[you] => Peter
[first] => http://www.example.com
[second] => https://www.twle.cn)

范例 2

"test.ini" 的内容

[names]
me = Robert
you = Peter
[urls]
first = "http://www.example.com"
second = "https://www.twle.cn"

PHP 代码(process_sections 设置为 true)

<?php

print_r(parse_ini_file("test.ini",true));

运行以上 PHP 范例,输出结果如下

Array(
    [names] => Array(
        [me] => Robert
        [you] => Peter
    )
    [urls] => Array(
        [first] => http://www.example.com
        [second] => https://www.twle.cn
    )
)

返回上一级

PHP 5 函数参考手册

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.