zoukankan      html  css  js  c++  java
  • thinkPHP5.0中的setInc,setDec方法

    ---恢复内容开始---

    thinkphp中setInc、setDec方法

    可用于统计字段(通常是数字类型的字段)的更新,例如积分,等级,登陆次数等

    必须配合连贯操作where一起使用

    1  $User = M("User"); // 实例化User对象
    2  $User->where('id=5')->setInc('score',3); // 用户的积分加3
    3  $User->where('id=5')->setInc('score'); // 用户的积分加1
    4  $User->where('id=5')->setDec('score',5); // 用户的积分减5
    5  $User->where('id=5')->setDec('score'); // 用户的积分减1


    上一条消息:

    $front = Db::name('area')->where('id', '<', '4')->order('id desc')->limit('0,1')->find();

    下一条消息:
    $next = Db::name('area')->where('id', '>', '5')->order('id asc')->limit('0,1')->find();

    ---恢复内容结束---

  • 相关阅读:
    学习进度
    毕设进度
    学习进度
    毕设进度
    学习进度
    学习进度
    第一周冲刺评论总结&&针对评论总结的改进
    第一阶段成果展示
    团队冲刺--Seven
    团队冲刺--six
  • 原文地址:https://www.cnblogs.com/ymdphp/p/10941708.html
Copyright © 2011-2022 走看看