手机浏览 RSS 2.0 订阅 膘叔的简单人生 , 腾讯云RDS购买 | 超便宜的Vultr , 注册 | 登陆

INI配置文件的解析

首页 > PHP >

我不知道怎么说才好,因为我在读INI文件的时候,往往都是用现成的函数:parse_ini_file或者是parse_ini_string,但怎么写入,就是另外的方法了(自己实现。。。。)

所以看到这篇文章的时候,我也才刚刚知道,原来,还有一个dba的函数可以用,嗯,仔细看了一下dba这个函数的installtion,发现支持inifile也是从PHP5才开始实现的。好吧,相应的dba相关的可以看看这里:http://www.php.net/manual/en/dba.installation.php,详细的还是看这里吧:http://www.php.net/manual/en/book.dba.php

OK,上原文,它来自于:http://www.cardii.net/php-spl-parse-ini-file/。

曾经介绍过SPL的各类型接口和迭代器。今天,在浏览PHP源码目录时,发现有个解析INI文件的例子,觉得不错,于是整理了一个实例,拿来分享下。

在PHP应用程序中,配置文件不可或缺,特别是商城,CMS之类的产品,不同的客户需求不同,当然,不会每个客户开发一套程序,好办法的是每个客户 有一套不同的配置文件。适合做配置文件的我曾经也说过,主要有四类:PHP数组(几乎其他的配置方法最终都是解析成为PHP数组),XML,YAML和 INI。今天只讲INI文件。ZendFramework使用此配置。

下看个DbaReader类。文件名为 DbaReader.php:

PHP代码
  1. <?php  
  2. class DbaReader implements Iterator  
  3. {  
  4.   
  5.     protected $db = NULL;  
  6.     private $key = false;  
  7.     private $val = false;  
  8.   
  9.     /** 
  10.      * Open database $file with $handler in read only mode. 
  11.      * 
  12.      * @param file    Database file to open. 
  13.      * @param handler Handler to use for database access. 
  14.      */  
  15.     function __construct($file$handler) {  
  16.         if (!$this->db = dba_open($file'r'$handler)) {  
  17.             throw new exception('Could not open file ' . $file);  
  18.         }  
  19.     }  
  20.   
  21.     /** 
  22.      * Close database. 
  23.      */  
  24.     function __destruct() {  
  25.         dba_close($this->db);  
  26.     }  
  27.   
  28.     /** 
  29.      * Rewind to first element. 
  30.      */  
  31.     function rewind() {  
  32.         $this->key = dba_firstkey($this->db);  
  33.         $this->fetch_data();  
  34.     }  
  35.   
  36.     /** 
  37.      * Move to next element. 
  38.      * 
  39.      * @return void 
  40.      */  
  41.     function next() {  
  42.         $this->key = dba_nextkey($this->db);  
  43.         $this->fetch_data();  
  44.     }  
  45.   
  46.     /** 
  47.      * Fetches the current data if $key is valid 
  48.      */  
  49.     private function fetch_data() {  
  50.         if ($this->key !== false) {  
  51.             $this->val = dba_fetch($this->key, $this->db);  
  52.         }  
  53.     }  
  54.   
  55.     /** 
  56.      * @return Current data. 
  57.      */  
  58.     function current() {  
  59.         return $this->val;  
  60.     }  
  61.   
  62.     /** 
  63.      * @return Whether more elements are available. 
  64.      */  
  65.     function valid() {  
  66.         if ($this->db && $this->key !== false) {  
  67.             return true;  
  68.         } else {  
  69.             return false;  
  70.         }  
  71.     }  
  72.   
  73.     /** 
  74.      * @return Current key. 
  75.      */  
  76.     function key() {  
  77.         return $this->key;  
  78.     }  
  79. }  
  80. ?>  

DbaReader使用Iterator接口,当然要实现里面的5个迭代方法。迭代方法对handlerhandlerINI文件的解析,用到了dba扩展。

说点题外话,什么是Dba?为什么使用Dba?
Dba是一款数据库,确切点说,是一款索引化的文件存储系统。适合相对比较静态的索引化的数据存储。所有版本的Linux都会带此数据库。
既然使用文件来存储数据,为什么还有使用Dba呢?原因有二:
1数据记录的存储长度可以不是固定的;
2使用索引存储和检索数据。

DbaReader提供一个访问INI文件数据的迭代方法,如果需要存储删除数据呢?所以DbaArray在继承DbaReader的基础上,实现了此功能。

PHP代码
  1. <?php  
  2. class DbaArray extends DbaReader implements ArrayAccess  
  3. {  
  4.   
  5.     /** 
  6.      * Open database $file with $handler in read only mode. 
  7.      * 
  8.      * @param file    Database file to open. 
  9.      * @param handler Handler to use for database access.取值http://www.php.net/manual/en/dba.requirements.php 
  10.      */  
  11.     function __construct($file$handler)  
  12.     {  
  13.         $this->db = dba_popen($file"c"$handler);  
  14.         if (!$this->db) {  
  15.             throw new exception("Databse could not be opened");  
  16.         }  
  17.     }  
  18.   
  19.     /** 
  20.      * Close database. 
  21.      */  
  22.     function __destruct()  
  23.     {  
  24.         parent::__destruct();  
  25.     }  
  26.   
  27.     /** 
  28.      * Read an entry. 
  29.      * 
  30.      * @param $name key to read from 
  31.      * @return value associated with $name 
  32.      */  
  33.     function offsetGet($name)  
  34.     {  
  35.         $data = dba_fetch($name$this->db);  
  36.             if($data) {  
  37.             if (ini_get('magic_quotes_runtime')) {  
  38.                 $data = stripslashes($data);  
  39.             }  
  40.             //return unserialize($data);  
  41.             return $data;  
  42.         }  
  43.         else  
  44.         {  
  45.             return NULL;  
  46.         }  
  47.     }  
  48.   
  49.     /** 
  50.      * Set an entry. 
  51.      * 
  52.      * @param $name key to write to 
  53.      * @param $value value to write 
  54.      */  
  55.     function offsetSet($name$value)  
  56.     {  
  57.         //dba_replace($name, serialize($value), $this->db);  
  58.         dba_replace($name$value$this->db);  
  59.         return $value;  
  60.     }  
  61.   
  62.     /** 
  63.      * @return whether key $name exists. 
  64.      */  
  65.     function offsetExists($name)  
  66.     {  
  67.         return dba_exists($name$this->db);  
  68.     }  
  69.   
  70.     /** 
  71.      * Delete a key/value pair. 
  72.      * 
  73.      * @param $name key to delete. 
  74.      */  
  75.     function offsetUnset($name)  
  76.     {  
  77.         return dba_delete($name$this->db);  
  78.     }  
  79. }  
  80. ?>  
使用范例
构建文件text.ini,内容如下:
XML/HTML代码
  1. host = localhost  
  2. password = password  
  3. database = data  

 

文件index.php.代码如下:

PHP代码
  1. <?php  
  2. function loadClass($class)  
  3. {  
  4.     require_once __DIR__.DIRECTORY_SEPARATOR.$class.'.php';  
  5. }  
  6. spl_autoload_register('loadClass',false);  
  7.   
  8. $iniFile = __DIR__.DIRECTORY_SEPARATOR.'test.ini';  
  9.   
  10. $ini = new DbaArray($iniFile,'iniFile');  
  11. echo $ini['database'];  
  12. var_dump($ini);  
  13. ?>  
--EOF--

看完上面这一段,是不是有什么想法?原来ini的操作也是这么的方便?不过,如果是纯读取的话,我还是比较推荐于parse_ini_file之类的(突然间忘了,如果编码不一样怎么办?ansi/utf-8,这真是一个永恒的痛。)




本站采用创作共享版权协议, 要求署名、非商业和保持一致. 本站欢迎任何非商业应用的转载, 但须注明出自"易栈网-膘叔", 保留原始链接, 此外还必须标注原文标题和链接.

« 上一篇 | 下一篇 »

1条记录访客评论

神奇,转走...

Post by ooxx on 2010, December 29, 1:53 PM 引用此文发表评论 #1


发表评论

评论内容 (必填):