程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> parse_ini_file用法

parse_ini_file用法

編輯:關於PHP編程

parse_ini_file用來解析一個配置文件

配置文件

如 config.ini

[host]

hostname = localhost

dbname = datebase

username = root

password = root

[smatyconf]

smarty_templates_dir=templates_dir

smarty_config_dir =config_dir

array parse_ini_file ( string filename [, bool process_sections] )

讀取ini文件並存為一個數組 proprocess_sections 參數如為true 則返回一個多為數組

以上 $confarr = parse_ini_file(config.ini);

print_r($confarr);

結果:

Array(

[hostname ]= >localhost

[dbname] => datebase

[username] => root

[password] = >root

[smarty_templates_dir] => templates_dir

[smarty_config_dir] => config_dir

)

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved