php INI配置文件的解析实现分析


Posted in PHP onJanuary 04, 2011

所以看到这篇文章的时候,我也才刚刚知道,原来,还有一个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 
class DbaReader implements Iterator 
{ protected $db = NULL; 
private $key = false; 
private $val = false; 
/** 
* Open database $file with $handler in read only mode. 
* 
* @param file Database file to open. 
* @param handler Handler to use for database access. 
*/ 
function __construct($file, $handler) { 
if (!$this->db = dba_open($file, 'r', $handler)) { 
throw new exception('Could not open file ' . $file); 
} 
} 
/** 
* Close database. 
*/ 
function __destruct() { 
dba_close($this->db); 
} 
/** 
* Rewind to first element. 
*/ 
function rewind() { 
$this->key = dba_firstkey($this->db); 
$this->fetch_data(); 
} 
/** 
* Move to next element. 
* 
* @return void 
*/ 
function next() { 
$this->key = dba_nextkey($this->db); 
$this->fetch_data(); 
} 
/** 
* Fetches the current data if $key is valid 
*/ 
private function fetch_data() { 
if ($this->key !== false) { 
$this->val = dba_fetch($this->key, $this->db); 
} 
} 
/** 
* @return Current data. 
*/ 
function current() { 
return $this->val; 
} 
/** 
* @return Whether more elements are available. 
*/ 
function valid() { 
if ($this->db && $this->key !== false) { 
return true; 
} else { 
return false; 
} 
} 
/** 
* @return Current key. 
*/ 
function key() { 
return $this->key; 
} 
} 
?>

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

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

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

<?php 
class DbaArray extends DbaReader implements ArrayAccess 
{ /** 
* Open database $file with $handler in read only mode. 
* 
* @param file Database file to open. 
* @param handler Handler to use for database access.取值http://www.php.net/manual/en/dba.requirements.php 
*/ 
function __construct($file, $handler) 
{ 
$this->db = dba_popen($file, "c", $handler); 
if (!$this->db) { 
throw new exception("Databse could not be opened"); 
} 
} 
/** 
* Close database. 
*/ 
function __destruct() 
{ 
parent::__destruct(); 
} 
/** 
* Read an entry. 
* 
* @param $name key to read from 
* @return value associated with $name 
*/ 
function offsetGet($name) 
{ 
$data = dba_fetch($name, $this->db); 
if($data) { 
if (ini_get('magic_quotes_runtime')) { 
$data = stripslashes($data); 
} 
//return unserialize($data); 
return $data; 
} 
else 
{ 
return NULL; 
} 
} 
/** 
* Set an entry. 
* 
* @param $name key to write to 
* @param $value value to write 
*/ 
function offsetSet($name, $value) 
{ 
//dba_replace($name, serialize($value), $this->db); 
dba_replace($name, $value, $this->db); 
return $value; 
} 
/** 
* @return whether key $name exists. 
*/ 
function offsetExists($name) 
{ 
return dba_exists($name, $this->db); 
} 
/** 
* Delete a key/value pair. 
* 
* @param $name key to delete. 
*/ 
function offsetUnset($name) 
{ 
return dba_delete($name, $this->db); 
} 
} 
?>

使用范例
构建文件text.ini,内容如下:
host = localhost 
password = password 
database = data

文件index.php.代码如下:
<?php 
function loadClass($class) 
{ 
require_once __DIR__.DIRECTORY_SEPARATOR.$class.'.php'; 
} 
spl_autoload_register('loadClass',false); $iniFile = __DIR__.DIRECTORY_SEPARATOR.'test.ini'; 
$ini = new DbaArray($iniFile,'iniFile'); 
echo $ini['database']; 
var_dump($ini); 
?>

--EOF--

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

PHP 相关文章推荐
上传多个文件的PHP脚本
Nov 26 PHP
PHP 程序员应该使用的10个组件
Oct 31 PHP
PHP 类商品秒杀计时实现代码
May 05 PHP
php HandlerSocket的使用
May 02 PHP
php学习笔记 面向对象的构造与析构方法
Jun 13 PHP
php设计模式 Delegation(委托模式)
Jun 26 PHP
PHP中获取变量的变量名的一段代码的bug分析
Jul 07 PHP
PHP循环输出指定目录下的所有文件和文件夹路径例子(简单实用)
May 10 PHP
php将csv文件导入到mysql数据库的方法
Dec 24 PHP
php获取本周星期一具体日期的方法
Apr 20 PHP
PHP中的traits实现代码复用使用实例
May 13 PHP
PHP文件后缀不强制为.php方法
Mar 31 PHP
PHP strncasecmp字符串比较的小技巧
Jan 04 #PHP
php simplexmlElement操作xml的命名空间实现代码
Jan 04 #PHP
array_multisort实现PHP多维数组排序示例讲解
Jan 04 #PHP
php关于array_multisort多维数组排序的使用说明
Jan 04 #PHP
PHP 设置MySQL连接字符集的方法
Jan 02 #PHP
php array_unique之后json_encode需要注意
Jan 02 #PHP
从php核心代码分析require和include的区别
Jan 02 #PHP
You might like
php出现Cannot modify header information问题的解决方法大全
2008/04/09 PHP
在WordPress中使用wp-cron插件来设置定时任务
2015/12/10 PHP
JSON PHP中,Json字符串反序列化成对象/数组的方法
2018/05/31 PHP
laravel手动创建数组分页的实现代码
2018/06/07 PHP
你需要知道的JavsScript可以做什么?
2007/06/29 Javascript
jquery mobile事件多次绑定示例代码
2013/09/13 Javascript
自定义Angular指令与jQuery实现的Bootstrap风格数据双向绑定的单选与多选下拉框
2015/12/12 Javascript
jQuery基于排序功能实现上移、下移的方法
2016/11/26 Javascript
vue中计算属性(computed)、methods和watched之间的区别
2017/07/27 Javascript
jQuery实现简单的回到顶部totop功能示例
2017/10/16 jQuery
使用axios实现上传图片进度条功能
2017/12/21 Javascript
Vue-cli3项目配置Vue.config.js实战记录
2018/07/29 Javascript
详解Vue中的自定义指令
2020/12/07 Vue.js
[06:48]DOTA2-DPC中国联赛2月26日Recap集锦
2021/03/11 DOTA
py2exe 编译ico图标的代码
2013/03/08 Python
离线安装Pyecharts的步骤以及依赖包流程
2020/04/23 Python
python3字符串操作总结
2019/07/24 Python
python安装gdal的两种方法
2019/10/29 Python
关于pandas的离散化,面元划分详解
2019/11/22 Python
flask框架url与重定向操作实例详解
2020/01/25 Python
tensorflow 利用expand_dims和squeeze扩展和压缩tensor维度方式
2020/02/07 Python
Python 字符串处理特殊空格\xc2\xa0\t\n Non-breaking space
2020/02/23 Python
基于Python爬取爱奇艺资源过程解析
2020/03/02 Python
Python return语句如何实现结果返回调用
2020/10/15 Python
使用BeautifulSoup4解析XML的方法小结
2020/12/07 Python
Canvas 文本转粒子效果的实现代码
2019/02/14 HTML / CSS
Canvas引入跨域的图片导致toDataURL()报错的问题的解决
2018/09/19 HTML / CSS
Opodo意大利:欧洲市场上领先的在线旅行社
2019/10/24 全球购物
数控专业个人求职信范例
2013/11/29 职场文书
车间主任岗位职责
2014/03/16 职场文书
好学生评语大全
2014/05/05 职场文书
疾病捐款倡议书
2014/05/13 职场文书
物理学专业求职信
2014/07/04 职场文书
机关单位2016年创先争优活动总结
2016/04/05 职场文书
nginx配置虚拟主机的详细步骤
2021/07/21 Servers
vue3种table表格选项个数的控制方法
2022/04/14 Vue.js