首页 > 开发 > PHP > 正文

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

2024-05-04 23:38:12
字体:
来源:转载
供稿:网友

这篇文章主要介绍了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. ?>  

 

 
  1. /**  
  2. * 针对PHP的配置,如有配置文件  
  3. *config.php  
  4. <?php  
  5. $db = array();  
  6. // Enter your database name here:  
  7. $db['name'] = 'test';  
  8. // Enter the hostname of your MySQL server:  
  9. $db['host'] = 'localhost';  
  10. ?>  
  11. //具体调用:  
  12. include ('settings.php'); //原始环境假设每个类为单独的一个类名.php文件  
  13. // Load settings (PHP)  
  14. $settings = new Settings_PHP;  
  15. $settings->load('config.php');  
  16. echo 'PHP: ' . $settings->get('db.host') . '';  
  17.  
  18. */ 
  19. 读取INI文件,主要用到parser_ini_file函数,该函数返回一个数组,如第二个参数为true时则返回多维数组 
  20. /**  
  21. * ini例子:config.ini  
  22.  
  23. [db]  
  24. name = test  
  25. host = localhost  
  26. //调用例子:  
  27. $settings = new Settings_INI;  
  28. $settings->load('config.ini');  
  29. echo 'INI: ' . $settings->get('db.host') . '';  
  30. */ 
  31. 读取XML文件,需要用到XML_PARSER,xmllib.php 
  32. /**  
  33. * XML例子:config.xml  
  34. <?xml version="1.0" encoding="UTF-8"?>  
  35. <settings>  
  36. <db>  
  37. <name>test</name>  
  38. <host>localhost</host>  
  39. </db>  
  40. </settings>  
  41. // Load settings (XML)  
  42. $settings = New Settings_XML;  
  43. $settings->load('config.xml');  
  44. echo 'XML: ' . $settings->get('db.host') . '';  
  45.  
  46. */ 
  47. 读取YAML格式文件,使用YAML必须使用到SPYC这个库<a href="http://spyc.sourceforge.net//"
  48. /</a>**  
  49. YAML配置例子:config.yaml  
  50. db:  
  51. name: test  
  52. host: localhost  
  53. // Load settings (YAML)  
  54. $settings = New Settings_YAML;  
  55. $settings->load('config.yaml');  
  56. echo 'YAML: ' . $settings->get('db.host') . '';  
  57. */  

1. ini有点过时??

2. xml比较好,

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

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

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

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

所以:xml最好。

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表