config.php
<?php
header("content-type:text/html;charset=utf-8");
$doc = new domdocument('1.0','utf-8');
$doc ->load('config.xml');
//第一步獲得documentelement跟元素
$config = $doc->documentelement;
//獲得根節點下所有子節點
$childs = $config ->childnodes;
//因為當前節點下還有子節點,所以遍歷
for($i=0;$i<$childs->length;$i++)
}var_dump($configs);
config.xml
<?xml version="1.0" encoding="utf-8"?>
localhost
ecshop
root
123
配置檔案解析函式
config.h this file is usred for parsing configure file.e mail yhniejun 163.com 2007.01.25 mr.nie the struct of config file.struct conf info typedef st...
tinyxml解析配置檔案
一 tinyxml類簡單介紹 tinyxml實現的時dom訪問模型,因此提供了一系列的類對應xml檔案中的各個節點。主要類間的關係如下圖所示 tixmlbase 其他類的基類,是個抽象類 tixmldocument 表示整個xml文件,不對應其中某個特定的節點。tixmlelement 表示元素節點...
MYSQL配置檔案解析
1.收集預設的目錄 介面 init default directories 主要是下面的目錄 etc etc mysql 環境變數中設定的 mysql home 當前使用者的home目錄 如果命令列引數中有 no defaults 選項,則將 no defaults 選項直接從現有的命令列引數中去掉...