私人领地

大神php摘录

1.

$rs = M('order')->where('id='.$res['id'])->save($order);
            if(!(is_numeric($rs) && intval($rs) > 0)){
                M('member')->where('id='.$member_id)->lock(true)->setDec('money',$res['price']);
                $this->error('订单取消失败');
            }

thinkphp的save($data) 返回数据 成功:$rs =1, 失败 :$rs =0

is_numeric 判断是否为数字,或者是数值型的字符串则为ture,否则为false 

 

posted @ 2016-12-15 11:30  狂奔的蜗牛Snails  阅读(160)  评论(0编辑  收藏  举报