thinkphp3.2.0 setInc方法 源码全面解析

前端之家收集整理的这篇文章主要介绍了thinkphp3.2.0 setInc方法 源码全面解析前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我们先来看一下setInc的官方示例:

需要一个字段和一个自增的值(默认为1)

我们通过下面这个例子来一步步分析他的底层是怎么实现的:

class TestController extends Controller {
public function test() {
$tb_test = M('test');
$tb_test->where(['id'=>1])->setInc('test_number',2); //每次添加2
dump($tb_test->getLastsql());
//string(67) "UPDATE tb_test SET test_number=test_number+2 WHERE ( id = 1 )"
}
}

第一步肯定是要找到setInc方法的源码:

这里我用到了PHPstrom全局搜索方法,找到了setInc是在proj\ThinkPHP\Library\Think\Model.class.PHP

setField($field,array('exp',$field.'+'.$step)); }

可以看到这里用到了setField这个方法,然后用exp自定义表达式设置 $field = $field + $step 到这里,我们稍微了解了一点原理。

可是问题又来了setField又是怎么实现的呢?在同个文件下,找到setField方法

save($data); }

这里我们看到了常用到的save方法,这里的 $data[$field] = $value; 其实就是 $data['test_number'] = array("exp","test_number+2")

接着来看最常用的save方法

data)) { $data = $this->data; // 重置数据 $this->data = array(); }else{ $this->error = L('_DATA_TYPE_INVALID_'); return false; } } // 数据处理 $data = $this->_facade($data); // 分析表达式 $options = $this->_parSEOptions($options); $pk = $this->getPk(); if(!isset($options['where']) ) { // 如果存在主键数据 则自动作为更新条件 if(isset($data[$pk])) { $where[$pk] = $data[$pk]; $options['where'] = $where; unset($data[$pk]); }else{ // 如果没有任何更新条件则不执行 $this->error = L('_OPERATION_WRONG_'); return false; } } if(is_array($options['where']) && isset($options['where'][$pk])){ $pkValue = $options['where'][$pk]; } if(false === $this->_before_update($data,$options)) { return false; } $result = $this->db->update($data,$options); if(false !== $result) { if(isset($pkValue)) $data[$pk] = $pkValue; $this->_after_update($data,$options); } return $result; }

最主要是的$options = $this->_parSEOptions($options);和$result = $this->db->update($data,$options); 前者把参数转换成用于拼接sql的字符串数组,后者调用了proj\tptest\ThinkPHP\Library\Think\Db.class.PHP下的update方法

model = $options['model']; $sql = 'UPDATE ' .$this->parseTable($options['table']) .$this->parseSet($data) .$this->parseWhere(!empty($options['where'])?$options['where']:'') .$this->parSEOrder(!empty($options['order'])?$options['order']:'') .$this->parseLimit(!empty($options['limit'])?$options['limit']:'') .$this->parseLock(isset($options['lock'])?$options['lock']:false) .$this->parseComment(!empty($options['comment'])?$options['comment']:''); return $this->execute($sql,$this->parseBind(!empty($options['bind'])?$options['bind']:array())); }

最后其实就是用到了proj\ThinkPHP\Library\Think\Db\Driver\MysqL.class.PHP这个驱动类的execute方法

initConnect(true); if ( !$this->_linkID ) return false; $this->queryStr = $str; //释放前次的查询结果 if ( $this->queryID ) { $this->free(); } N('db_write',1); // 记录开始执行时间 G('queryStartTime'); $result = MysqL_query($str,$this->_linkID) ; $this->debug(); if ( false === $result) { $this->error(); return false; } else { $this->numRows = MysqL_affected_rows($this->_linkID); $this->lastInsID = MysqL_insert_id($this->_linkID); return $this->numRows; } }

最后用最底层的MysqL_query执行sql语句。

到此为止,setInc的源码已经大致过了一遍了。想必大家对setInc如何执行也更了解了一点。

以上这篇thinkPHP3.2.0 setInc方法 源码全面解析就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/thinkphp/16353.html

猜你在找的ThinkPHP相关文章