位置: 编程技术 - 正文
推荐整理分享PHP:parse_ini_file()的用法_Filesystem函数,希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:,内容如对您有帮助,希望把文章链接给更多的朋友!
(PHP 4, PHP 5)
parse_ini_file — 解析一个配置文件
说明 array parse_ini_file ( string $filename [, bool $process_sections = false [, int $scanner_mode = INI_SCANNER_NORMAL ]] )parse_ini_file() 载入一个由 filename 指定的 ini 文件,并将其中的设置作为一个联合数组返回。
ini 文件的结构和 php.ini 的相似。
参数filename
要解析的 ini 文件的文件名。
process_sections如果将最后的 process_sections 参数设为 TRUE,将得到一个多维数组,包括了配置文件中每一节的名称和设置。process_sections 的默认值是 FALSE。
scanner_modeCan either be INI_SCANNER_NORMAL (default) or INI_SCANNER_RAW. If INI_SCANNER_RAW is supplied, then option values will not be parsed.
返回值成功时以关联数组 array 返回设置,失败时返回 FALSE。
更新日志版本 说明 5.3.0 Added optional scanner_mode parameter. Single quotes may now be used around variable assignments. Hash marks (#) may no longer be used as comments and will throw a deprecation warning if used. 5.2.7 On syntax error this function will return FALSE rather than an empty array. 5.2.4 由数字组成的键名和小节名会被 PHP 当作整数来处理,因此以 0 开头的数字会被当作八进制而以 0x 开头的会被当作十六进制。 5.0.0 该函数也开始处理选项值内的新行。 4.2.1 本函数也开始受到安全模式和 open_basedir 的影响。
范例
Example #1 sample.ini 的内容
Example #2 parse_ini_file() 例子
常量也可以在 ini 文件中被解析,因此如果在运行 parse_ini_file() 之前定义了常量作为 ini 的值,将会被集成到结果中去。只有 ini 的值会被求值。例如:
<?phpdefine('BIRD','Dodobird');//Parsewithoutsections$ini_array=parse_ini_file("sample.ini");print_r($ini_array);//Parsewithsections$ini_array=parse_ini_file("sample.ini",true);print_r($ini_array);?>以上例程的输出类似于:
Example #3 parse_ini_file() parsing a php.ini file
<?php//Asimplefunctionusedforcomparingtheresultsbelowfunctionyesno($expression){return($expression?'Yes':'No');}//Getthepathtophp.iniusingthephp_ini_loaded_file()//functionavailableasofPHP5.2.4$ini_path=php_ini_loaded_file();//Parsephp.ini$ini=parse_ini_file($ini_path);//Printandcomparethevalues,notethatusingget_cfg_var()//willgivethesameresultsforparsedandloadedhereecho'(parsed)magic_quotes_gpc='.yesno($ini['magic_quotes_gpc']).PHP_EOL;echo'(loaded)magic_quotes_gpc='.yesno(get_cfg_var('magic_quotes_gpc')).PHP_EOL;?>以上例程的输出类似于:
注释Note:
本函数和 php.ini 文件没有关系,该文件在运行脚本时就已经处理过了。本函数可以用来读取你自己的应用程序的配置文件。
Note:
如果 ini 文件中的值包含任何非字母数字的字符,需要将其括在双引号中(")。
Note: 有些保留字不能作为 ini 文件中的键名,包括:null,yes,no,true 和 false。值为 null,no 和 false 等效于 "",值为 yes 和 true 等效于 "1"。字符 {}|&~![()" 也不能用在键名的任何地方,而且这些字符在选项值中有着特殊的意义。
参见parse_ini_string() - Parse a configuration string
PHP:popen()的用法_Filesystem函数 popen(PHP4,PHP5)popen打开进程文件指针说明resourcepopen(string$command,string$mode)打开一个指向进程的管道,该进程由派生给定的command命令执行而产生。参数command
PHP:readfile()的用法_Filesystem函数 readfile(PHP4,PHP5)readfile输出一个文件说明intreadfile(string$filename[,bool$use_include_path=false[,resource$context]])读入一个文件并写入到输出缓冲。参数filename要读取的
PHP:pclose()的用法_Filesystem函数 pclose(PHP4,PHP5)pclose关闭进程文件指针说明intpclose(resource$handle)关闭用popen()打开的指向管道的文件指针。参数handle文件指针必须有效,且必须是成功调用pop
标签: PHP:parse_ini_file()的用法_Filesystem函数
本文链接地址:https://www.jiuchutong.com/biancheng/285180.html 转载请保留说明!友情链接: 武汉网站建设