
CI框架
gcl_guyunlige
该考虑考虑了
展开
-
CI框架,开启事务
<?php // 开启事务,CI框架 $this->Systems_model->base_connect(); $this->Systems_model->db->initialize(); $this->Systems_model->db->trans_begin(); try { $rs = $this->Systems_...原创 2018-08-03 11:49:57 · 1233 阅读 · 0 评论 -
PHP框架使用顺序:
1,在构造方法 __construct: 一般写 分页函数相关的数据(page的接收与每页显示的条数pageSize),是否登录的验证; 一些渲染页面的公共参数(like: 1,性别,年龄的搜索字段拼接$_GET或者$_POST 2,页面导航条的宽度) 2,主方法对应页面,渲染的内容大致相同写在公共方法,传参数区分 like: public function p...原创 2018-08-03 11:56:22 · 233 阅读 · 0 评论