Registry 中文意思是记录,登记,记录本的意思, 在opencart中他的用途就是 登记公共类.类的原型放在 system\engine文件夹下 代码很简单: data[$key]) ? $this->data[$key] : NULL); } public fu...
分类:
其他好文 时间:
2014-07-12 00:58:55
阅读次数:
281
1. “Registry”设计模式在OpenCart中,Registry是整个系统的信息中枢。Registry是一个单例(Singleton),在index.php起始页面中,首先作为构造函数参数传递给所要用到的类创建类实例,并随之将这个类实例设置到这个“注册表”中,这个注册表就像是一个共享的数据总...
分类:
其他好文 时间:
2014-07-12 00:56:17
阅读次数:
283
opencart 模块开发详解由 xiekanxiyang » 2013年 7月 11日 10:17 pmopencart 将页面分成若干模块, 每个模块可以有多个实例(可能这样说不是很恰当) 每个实例可以指定它出现在哪个页面 这样更好的实现了代码的可重用性,可以达到更好的页面布局的可调节性. Op...
分类:
其他好文 时间:
2014-07-12 00:54:20
阅读次数:
334
oracle11g new feature SPM
有助于保持sql的语句特性,只允许执行性能提高的执行计划。
它不同于stored outlines, spm在于稳定sql性能,而store outlines在于冻结sql执行计划
事列
1.启用optimizer_cature_sql_plan_baselines 捕获sql语句
SQL> alter sess...
分类:
数据库 时间:
2014-07-10 23:36:46
阅读次数:
364
Introduction to RedisRedis is an open source, BSD licensed, advanced key-value store. It is often referred to as a data structure server since keys ca...
分类:
其他好文 时间:
2014-07-09 15:35:56
阅读次数:
211
Unique Binary Search Trees
My Submissions
Given n, how many structurally unique BST's (binary search trees) that store values 1...n?
For example,
Given n = 3, there are a total of 5 uniqu...
分类:
其他好文 时间:
2014-07-08 14:18:39
阅读次数:
159
首先请保证已经安装好jdk,并且环境变量以及配置好了
第一步、为服务器生成证书:
使用toolkey为tomcat生成证书,假定目标机器的域名为localhost,使用如下命令生成:keytool –genkey –v –aliaslocalhost_server RSA –keystore localhost_server.store –validity 365...
分类:
其他好文 时间:
2014-07-06 12:11:59
阅读次数:
223
var itemsPerPage = 20;
var combo;
//创建数据源store
Ext.define('recordStore', {
extend : 'Ext.data.Store',
// autoLoad : {
// start : 0,
// limit : itemsPerPage
// },
start : 0,
limit :...
分类:
Web程序 时间:
2014-07-05 10:53:34
阅读次数:
412
引用using Excel = Microsoft.Office.Interop.Excel;定义1 Excel.ApplicationClass app;2 Excel.Workbooks books;3 Excel.Workbook book;4 Excel.Sheets sheets;5 Ex...
分类:
Web程序 时间:
2014-07-02 18:09:42
阅读次数:
221
引用
using Excel = Microsoft.Office.Interop.Excel;
定义
1 Excel.ApplicationClass app;
2 Excel.Workbooks books;
3 Excel.Workbook book;
4 Excel.Sheets sheets;
5 Excel.Worksheet sheet;
6 ...
分类:
Web程序 时间:
2014-07-02 15:18:14
阅读次数:
220