ECShop配置檔案解析

2022-09-03 10:18:11 字數 779 閱讀 9023

1. 配置檔案位置:/upload/data/config.php

2. 配置解析

<?php

//主機位址

$db_host = "";

//資料庫名稱

$db_name = "";

//資料庫使用者名稱

$db_user = "";

//資料庫密碼

$db_pass = "";

//資料表字首

$prefix = "";

//預設時區

$timezone = "prc";

//cookie 所在目錄

$cookie_path = "/";

//**cookie所在的域

$cookie_domain = "";

$session = "1440";

//ecshop 預設編碼

define('ec_charset','utf-8');

//ecshop 後台目錄

define('admin_path','admin');

//防止多個網域名稱下的session衝突

define('auth_key', 'this is a key');

//加密作用,不做修改

define('old_auth_key', '');

//建站時間

define('api_time', '2016-03-08 13:46:10');

?>

配置檔案解析函式

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 表示元素節點...

DOM解析配置檔案

config.php header content type text html charset utf 8 doc new domdocument 1.0 utf 8 doc load config.xml 第一步獲得documentelement跟元素 config doc documentel...