php5.6 CI的问题(Only variable references should be returned by reference) 2017年6月5日 | 成长之路 A PHP Error was encountered Severity: Notice Message: Only variable references should be returned by reference Filename: core/Common.php Line Number: 257 原代码: return $_config[0] =& $config; 修改后: $_config[0] =& $config; return $_config[0];…… 阅读全文
ci更新字段 自加1 自加N方法 2017年5月18日 | 成长之路 更新用户积分,例子: //更新用户积分 public function setUserPoint($userid,$point=10) { $this->db->where('id',$userid); $this->db->set('point','point +'.$point,FALSE); $result = $this->db->update('users表'); return $result; }…… 阅读全文
CI CodeIgniter框架library内部怎么加载其他类? 2017年4月12日 | 成长之路 CI CodeIgniter框架library内部怎么加载其他类? 在A类里调用B类,则在A类class上面加上如下代码即可。 $CI =& get_instance(); $CI->load->library('B');…… 阅读全文