Tag Archives: coolCode

测试coolCode

刚刚安装了一个coolCode的插件,目的是为了能够和关注这个Blog的人共享一些有用的代码. 所以,下面我随便发一些代码,看看能不能让Code高亮起来. $page = isset($_GET['page']) ? (int)$_GET['page'] : 0; $pagesize = 50; $conditions = null; // 查询条件为 null,表示查询所有记录 $sortby = ‘created DESC’; FLEA::loadClass(‘FLEA_Helper_Pager’); $tableProducts = FLEA::getSingleton(‘Table_Products’); // $tableProducts 是用于操作产品数据表的表数据入口对象 $pager = new FLEA_Helper_Pager($tableProducts, $conditions, $page, $pagesize, $sortby); $view = $this->_getView(); … Continue reading

Posted in 闲谈 | Tagged | Leave a comment