当前位置:首页 > PHP教程 > php类库 > 列表

PHP读取配置文件类实例(可读取ini,yaml,xml等)

发布:smiling 来源: PHP粉丝网  添加日期:2021-06-14 14:56:32 浏览: 评论:0 

这篇文章主要介绍了PHP读取配置文件类,可读取ini,yaml,xml等配置文件,具有一定参考借鉴价值,需要的朋友可以参考下,本文实例讲述了PHP读取配置文件类实例,分享给大家供大家参考,具体如下:

  1. <?php  
  2. class Settings {  
  3.  var $_settings = array ();  
  4.  function get($var) {  
  5.  $var = explode ( '.'$var );  
  6.  $result = $this->_settings;  
  7.  foreach ( $var as $key ) {  
  8.   if (! isset ( $result [$key] )) {  
  9.   return false;  
  10.   }   
  11.   $result = $result [$key];  
  12.  }   
  13.  return $result;  
  14.  }  
  15.  function load() {  
  16.  trigger_error ( 'Not yet implemented', E_USER_ERROR );  
  17.  }  
  18. }  
  19. class Settings_PHP extends Settings {  
  20.  function load($file) {  
  21.  if (file_exists ( $file ) == false) {  
  22.   return false;  
  23.  }  
  24.  // Include file  
  25.  include ($file);  
  26.  unset ( $file );  
  27.  // Get declared variables  
  28.  $vars = get_defined_vars ();  
  29.  // Add to settings array  
  30.  foreach ( $vars as $key => $val ) {  
  31.   if ($key == 'this')  
  32.   continue;   
  33.   $this->_settings [$key] = $val;  
  34.  }  
  35.  }  
  36. }  
  37. class Settings_INI extends Settings {  
  38.  function load($file) {  
  39.  if (file_exists ( $file ) == false) {  
  40.   return false;  
  41.  }  
  42.  $this->_settings = parse_ini_file ( $file, true );  
  43.  }  
  44. }  
  45. class Settings_YAML extends Settings {  
  46.  function load($file) {  
  47.  if (file_exists ( $file ) == false) {  
  48.   return false;  
  49.  }  
  50.  include ('spyc.php');  
  51.  $this->_settings = Spyc::YAMLLoad ( $file );  
  52.  }  
  53. }  
  54. class Settings_XML extends Settings {  
  55.  function load($file) {  
  56.  if (file_exists ( $file ) == false) {  
  57.   return false;  
  58.  }  
  59.  include ('xmllib.php');  
  60.  $xml = file_get_contents ( $file );  
  61.  $data = XML_unserialize ( $xml );  
  62.  $this->_settings = $data ['settings'];  
  63.  }  
  64. }  
  65. ?>  
  66.  
  67. /**  
  68. * 针对PHP的配置,如有配置文件  
  69. *config.php  
  70. <?php  
  71. $db = array();  
  72. // Enter your database name here:  
  73. $db['name'] = 'test';  
  74. // Enter the hostname of your MySQL server:  
  75. $db['host'] = 'localhost';  
  76. ?>  
  77. //具体调用:  
  78. include ('settings.php'); //原始环境假设每个类为单独的一个类名.php文件  
  79. // Load settings (PHP)  
  80. $settings = new Settings_PHP;  
  81. $settings->load('config.php');  
  82. echo 'PHP: ' . $settings->get('db.host') . '';  
  83.  
  84. */ 
  85.  读取INI文件,主要用到parser_ini_file函数,该函数返回一个数组,如第二个参数为true时则返回多维数组 
  86. /**  
  87. * ini例子:config.ini  
  88.  
  89. [db]  
  90. name = test  
  91. host = localhost  
  92. //调用例子:  
  93. $settings = new Settings_INI;  
  94. $settings->load('config.ini');  
  95. echo 'INI: ' . $settings->get('db.host') . '';  
  96. */ 
  97.  读取XML文件,需要用到XML_PARSER,xmllib.php 
  98. /**  
  99. * XML例子:config.xml  
  100. <?xml version="1.0" encoding="UTF-8"?>  
  101. <settings>  
  102. <db>  
  103.  <name>test</name>  
  104.  <host>localhost</host>  
  105. </db>  
  106. </settings>  
  107. // Load settings (XML)  
  108. $settings = New Settings_XML;  
  109. $settings->load('config.xml');  
  110. echo 'XML: ' . $settings->get('db.host') . '';  
  111.  
  112. */ 
  113.  读取YAML格式文件,使用YAML必须使用到SPYC这个库<a href="http://spyc.sourceforge.net//"
  114. /</a>**  
  115. YAML配置例子:config.yaml  
  116. db:  
  117.  name: test  
  118.  host: localhost  
  119. // Load settings (YAML)  
  120. $settings = New Settings_YAML;  
  121. $settings->load('config.yaml');  
  122. echo 'YAML: ' . $settings->get('db.host') . '';  
  123. */  

1. ini有点过时??

2. xml比较好,

3. yaml很好,但是毕竟没有标准化。

4. txt要自己组织格式,开放性不好。

5. 类序列化。比较好,但是不熟悉的人使用比较麻烦!

6. php定义常量(你不用修改数据吗?)

所以:xml最好。

希望本文所述对大家的php程序设计有所帮助。

Tags: PHP读取配置 PHP文件类

分享到: