上一页 1 ··· 3 4 5 6 7
摘要: function index(){// 分页查询// 每页显示的记录数$limit = 5;// 获取总记录数量$total = $model->where($cond)->count();// 获取分页Page对象$page = new Page($total, $limit);// 完成查询$r 阅读全文
posted @ 2017-05-12 13:36 jackduan1 阅读(1282) 评论(0) 推荐(0) 编辑
摘要: 其他编辑器使用方式http://www.cnblogs.com/loyung/p/3162618.html<th>内容</th><td> <script type="text/plain" id="content" name="post[post_content]"></script></td> < 阅读全文
posted @ 2017-05-12 09:46 jackduan1 阅读(905) 评论(0) 推荐(0) 编辑
摘要: function index{ $this->posts_model = D("Portal/Posts"); $count=$this->posts_model->count(); $page = $this->page($count, 20); $this->posts_model ->alias("a") ->join("__USERS__ c ON a.post_auth... 阅读全文
posted @ 2017-05-11 17:53 jackduan1 阅读(2624) 评论(0) 推荐(0) 编辑
摘要: 第一种 入库过滤js自动填充时过滤js代码class GoodsModel extends Model{ // 填充 protected $_auto = [ // 自己补充填充规则 // 描述中 处理掉script部分 ['description', 'mkDescription', self:: 阅读全文
posted @ 2017-05-11 17:37 jackduan1 阅读(1909) 评论(0) 推荐(0) 编辑
摘要: public function person_pic_post(){ $uid = $this->userid; $rules = array( //array(验证字段,验证规则,错误提示,验证条件,附加规则,验证时间) array('acard', 'require', '身份证正面不能为空!' 阅读全文
posted @ 2017-05-11 13:29 jackduan1 阅读(2110) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7