15

所属分类:WEB开发
开发工具:PHP
文件大小:20281KB
下载次数:2
上传日期:2018-04-08 19:33:21
上 传 者4twef
说明:  该软件高仿小米商城2015旗舰版+团购+手机版。用帝国还原恢复数据库.
(The software is highly modeled on Millet mall 2015 ultimate + group purchase + mobile version. Restore the database with the Empire reduction.)

文件列表:
sms\20140907\18695201225.log (436, 2014-09-22)
sms\sms.js (1153, 2014-09-22)
sms\sms.php (3688, 2014-09-22)
temp\backup\index.htm (0, 2014-09-22)
temp\backup\library\index.htm (0, 2014-09-22)
temp\backup\library\xiaomi-comments.lbi (69, 2014-09-22)
temp\backup\library\xiaomi-comments_list.lbi (10020, 2014-09-22)
temp\cachesmobile\0\index_40F756F01411436916.php (12712, 2014-09-23)
temp\cachesmobile\0\index_40F756F01411440370.php (12737, 2014-09-23)
temp\cachesmobile\0\index_40F756F01411441269.php (12802, 2014-09-23)
temp\cachesmobile\0\index_40F756F01415840695.php (12752, 2014-11-13)
temp\cachesmobile\1\index_40F756F01411440708.php (12947, 2014-09-23)
temp\cachesmobile\1\index_40F756F01418454629.php (21005, 2014-12-13)
temp\cachesmobile\1\index_40F756F01441619664.php (12766, 2015-09-07)
temp\cachesmobile\1\index_40F756F01446000758.php (12916, 2015-10-28)
temp\cachesmobile\2\goods_2A3C7B79.php (13966, 2015-10-28)
temp\cachesmobile\2\index_40F756F01411440373.php (12737, 2014-09-23)
temp\cachesmobile\2\index_40F756F01411440704.php (12947, 2014-09-23)
temp\cachesmobile\2\index_40F756F01411441274.php (12802, 2014-09-23)
temp\cachesmobile\2\index_40F756F01411816293.php (12779, 2014-09-27)
temp\cachesmobile\2\index_40F756F01441619654.php (12766, 2015-09-07)
temp\cachesmobile\3\index_40F756F01411528035.php (12802, 2014-09-24)
temp\cachesmobile\3\index_40F756F01412509226.php (12779, 2014-10-05)
temp\cachesmobile\3\index_40F756F01418454655.php (24174, 2014-12-13)
temp\cachesmobile\3\index_40F756F01420262335.php (12779, 2015-01-03)
temp\cachesmobile\4\index_40F756F01411441228.php (12732, 2014-09-23)
temp\cachesmobile\4\index_40F756F01441619851.php (12658, 2015-09-07)
temp\cachesmobile\5\index_40F756F01412509259.php (12779, 2014-10-05)
temp\cachesmobile\5\index_40F756F01429406863.php (12779, 2015-04-19)
temp\cachesmobile\6\goods_img_70AC1C2D.php (4087, 2014-09-27)
temp\cachesmobile\6\index_40F756F01411440191.php (12712, 2014-09-23)
temp\cachesmobile\7\goods_60AB3E36.php (15874, 2014-09-23)
temp\cachesmobile\7\index_40F756F01441619717.php (12766, 2015-09-07)
temp\cachesmobile\8\goods_592602F3.php (14148, 2014-11-13)
temp\cachesmobile\8\index_40F756F01411439667.php (12712, 2014-09-23)
temp\cachesmobile\8\index_40F756F01411440758.php (12190, 2014-09-23)
temp\cachesmobile\8\index_40F756F01411440762.php (12190, 2014-09-23)
temp\cachesmobile\8\index_40F756F01412509474.php (12720, 2014-10-05)
temp\cachesmobile\8\index_40F756F01419038039.php (24174, 2014-12-20)
temp\cachesmobile\8\index_40F756F01419038540.php (12779, 2014-12-20)
... ...

README 升级程序目录结构说明文件 index.php 升级程序之控制器 languages/ 语言包 templates/ 模板 packages/ 升级包存放目录 packages/v2.1.0/ 升级包。从v2.0.5升级到v2.1.0 packages/v2.1.0/changelog 这里存放文件和数据结构的修改历史 packages/v2.1.0/structure.sql 数据结构升级文件 packages/v2.1.0/data_zh_cn.sql 数据升级文件之简体中文版 packages/v2.1.0/data_zh_tw.sql 数据升级文件之繁体中文版 . . . 备注: 一、每个升级包只负责较之低一个版本号的升级任务。 二、由于要进行前缀替换以及表名获取,为了精确匹配, 在制作数据库安装或升级文件时,建议用以下SQL语句: CREATE TABLE DROP TABLE ALTER TABLE UPDATE REPLACE INTO INSERT INTO 三、每个版本类,必须提供的接口有: 方法: (1) update_database_optionally() 在此函数中,用户可随心所欲地对数据库进行操作,提高了程序的灵活性和适应性。 这主要是考虑到,有些操作在SQL文件中直接用SQL语句不方便进行的缘故。 (2) update_files() 在此函数中,用户可对系统的文件进行操作。 属性: (1) $sql_files 该属性用于存放某个升级包中SQL文件存放的位置(相对于升级包所在的路径)。 一般来说形式如下: var $sql_files = array( 'structure' => 'structure.sql', 'data' => array( 'zh_cn' => 'data_zh_cn.sql', 'zh_tw' => 'data_zh_tw.sql' ) ); 而当data不区分语言时,形式则如下: var $sql_files = array( 'structure' => 'structure.sql', 'data' => ‘data.sql’); 当然,该数组可以没有其中任何一个元素,甚至可以为空: var $sql_files = array('structure' => 'structure.sql'); var $sql_files = array('data' => 'data.sql'); var $sql_files = array(); (2) $auto_match 用来控制某升级包是否进行智能化的查询操作

近期下载者

相关文件


收藏者