摘要:
效果: 阅读全文
摘要:
sqlserver,窗口函数,分区,累加 阅读全文
摘要:
Redis和Memcache的区别分析 原文链接:http://blog.csdn.net/u013474436/article/details/48632665 简单区别: 1. Redis中,并不是所有的数据都一直存储在内存中的,这是和Memcached相比一个最大的区别。 2. Redis不仅 阅读全文
摘要:
php,memcache,遍历key 阅读全文
摘要:
学习php的命名空间,直接把手册的代码粘贴过来,却报错了:Fatal error: Namespace declaration statement has to be the very first statement or after any declare call in the script i 阅读全文
摘要:
drupal7,缓存,boost 阅读全文
摘要:
drupal7 下拉菜单 superfish 阅读全文
摘要:
drupal7 上传下载 阅读全文
摘要:
1.查询: execute() ->fetch():从结果集中取出一行作为一个对象 execute() ->fetchField():获取单个值 execute() ->fetchAll():获取集合 2.增删改: execute() 执行增删改,并返回影响行数 阅读全文
摘要:
$query = db_select('Table','t'); $query->join('Table_A','a','on条件); $query->join('Table_B','b','on条件'); $objects=$query->extend('PagerDefault')//重要,extend('PagerDefault')实现分页 ... 阅读全文