当前位置: 移动技术网 > IT编程>开发语言>PHP > thinkphp3.2.0 setInc方法 源码全面解析

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

2018年02月07日  | 移动技术网IT编程  | 我要评论

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

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

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

<?php
namespace home\controller;
use think\controller;

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下

/**
   * 字段值增长
   * @access public
   * @param string $field 字段名
   * @param integer $step 增长值
   * @return boolean
   */
  public function setinc($field,$step=1) {
    return $this->setfield($field,array('exp',$field.'+'.$step));
  }

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

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

/**
   * 设置记录的某个字段值
   * 支持使用数据库字段和方法
   * @access public
   * @param string|array $field 字段名
   * @param string $value 字段值
   * @return boolean
   */
  public function setfield($field,$value='') {
    if(is_array($field)) {
      $data      =  $field;
    }else{
      $data[$field]  =  $value;
    }
    return $this->save($data);
  }

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

接着来看最常用的save方法:

/**
   * 保存数据
   * @access public
   * @param mixed $data 数据
   * @param array $options 表达式
   * @return boolean
   */
  public function save($data='',$options=array()) {
    if(empty($data)) {
      // 没有传递数据,获取当前数据对象的值
      if(!empty($this->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方法:

/**
   * 更新记录
   * @access public
   * @param mixed $data 数据
   * @param array $options 表达式
   * @return false | integer
   */
  public function update($data,$options) {
    $this->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方法。

/**
   * 执行语句
   * @access public
   * @param string $str sql指令
   * @return integer|false
   */
  public function execute($str) {
    $this->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方法 源码全面解析就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持移动技术网。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网