摘要: where条件查询,时间范围查询 $condition = [ ['type', 'IN', '1,2,3'], ['allocate_id', '=', 0], ['member_id', '=', 0], ['card_code', '>=', $start_code], ['card_code 阅读全文
posted @ 2020-01-07 14:29 在斑马线上散布 阅读(364) 评论(0) 推荐(0) 编辑
摘要: 如统计已激活设备数量和未激活设备数量 $condition = [ ['member_id', '=', $member_id] ]; $field = [ 'COUNT(IF(active_member_id > 0, 1, null)) as actived_num', 'COUNT(IF(ac 阅读全文
posted @ 2020-01-07 14:12 在斑马线上散布 阅读(1085) 评论(0) 推荐(0) 编辑
摘要: 郑人有薪于野者,遇骇鹿,御而击之,毙之。 恐人见之也,遽而藏诸隍中,覆之以蕉,不胜其喜。俄而遗其所藏之处,遂以为梦焉。顺涂而咏其事。傍人有闻者,用其言而取之。既归,告其室人曰:“向薪者梦得鹿,而不知其处;吾今得之,彼直真梦矣。 ”室人曰:“若将是梦见薪者之得鹿邪?讵有薪者邪?今真得鹿,是若之梦真邪? 阅读全文
posted @ 2019-12-20 13:45 在斑马线上散布 阅读(377) 评论(0) 推荐(0) 编辑
摘要: 1、需求,手动给会员新增京币,并且添加分配日志,返回修改是否成功 CREATE DEFINER=`jszapi`@`%` PROCEDURE `p_allot_user_coin`(IN `_member_id` int,IN `_coin` int,OUT `_res` tinyint) BEGI 阅读全文
posted @ 2019-12-16 17:21 在斑马线上散布 阅读(1059) 评论(1) 推荐(0) 编辑
摘要: 模型 -> getLastSql(); //TP打印SQL语句 $data = $this->field($field)->where($condition)->select(); echo $this->getLastSql();//输出 SELECT `id`,`title`,materialU 阅读全文
posted @ 2019-12-10 23:51 在斑马线上散布 阅读(2855) 评论(0) 推荐(0) 编辑
摘要: (expr1) ? (expr2) : (expr3); //php三元运算符的写法 $status = 3; $info2 = $status == 1 ? '待处理' : '已处理'; echo $info2;//输出 已处理$info3 = $status == 1 ? '未发货' : ($s 阅读全文
posted @ 2019-12-10 23:36 在斑马线上散布 阅读(1761) 评论(0) 推荐(0) 编辑
摘要: Db::startTrans(); try{ Db::commit(); } catch (\Exception $e) { Db::rollback(); } use think\Db; public function addInfoData($member_id, $type, $money, 阅读全文
posted @ 2019-12-06 22:54 在斑马线上散布 阅读(373) 评论(0) 推荐(0) 编辑
摘要: truncate(num, 位数); //不四舍五入,4位后 没有逗号分隔 。输出4111545.13 truncate(4111545.1366,2); 阅读全文
posted @ 2019-12-06 22:48 在斑马线上散布 阅读(345) 评论(0) 推荐(0) 编辑
摘要: use think\Validate; <?php namespace app\common\model; use think\Validate; use think\Db; class InvoiceRecords extends BaseModel { protected $table = 't 阅读全文
posted @ 2019-12-06 22:40 在斑马线上散布 阅读(1369) 评论(0) 推荐(0) 编辑
摘要: switch switch (expression) { case label1: expression = label1 时执行的代码 ; break; case label2: expression = label2 时执行的代码 ; break; default: 表达式的值不等于 label 阅读全文
posted @ 2019-12-05 15:39 在斑马线上散布 阅读(430) 评论(2) 推荐(0) 编辑
摘要: orderRaw('rand()'); /** * 随机获取一条商品信息 * @param [type] $condition * @param [type] $field * @param [type] $limit * @return void */ public function randSk 阅读全文
posted @ 2019-12-05 00:08 在斑马线上散布 阅读(1930) 评论(0) 推荐(0) 编辑
摘要: array_sum(array_column($arr, 'num')); //计算二维数组指定元素的和 $arr = [ [ 'id'=>1, 'num'=>3, ], [ 'id'=>2, 'num'=>4, ], [ 'id'=>3, 'num'=>1, ], ]; //计算二维数组指定元素的 阅读全文
posted @ 2019-12-05 00:01 在斑马线上散布 阅读(1046) 评论(0) 推荐(0) 编辑
摘要: array_diff($arr, [0]); // 清除数组中指定元素 $arr = [1,2,3,0,1]; $arr = array_diff($arr, [0]);//输出[1,2,3,1] var_dump($arr); 阅读全文
posted @ 2019-12-04 23:56 在斑马线上散布 阅读(3340) 评论(0) 推荐(0) 编辑
摘要: array_unique($arr); //删除重复元素 $arr = [1,2,3,0,1]; echo '<pre>'; var_dump($arr); $arr = array_unique($arr);//输出[1,2,3,0] var_dump($arr); 阅读全文
posted @ 2019-12-04 23:53 在斑马线上散布 阅读(998) 评论(0) 推荐(1) 编辑
摘要: 说,如果有一个会员表,每一个会员都有一个邀请人from_id字段(记录该会员是谁邀请的),知道一个会员id,现在需要查询某一个会员是否是该会员的下级。 表如下: 一、当下需求 1、我们需要知道会员id5赵钱,是否是会员id张三的下属会员。 2、代码思路,从下级往上查,因为一个人只能有一个上级。使用递 阅读全文
posted @ 2019-12-04 00:00 在斑马线上散布 阅读(447) 评论(0) 推荐(0) 编辑
夫人不言,言必有中。这是高级臣僚的一种可贵品质,言辞精炼,直抵要害。