- 博客(7)
- 收藏
- 关注
原创 微信小程序支付:服务商分账(PHP)
签名参数: //按照参数名ASCII字典序排序; 就是按照首字母排序,首字母相同排第二个,以此类推; $post['appid'] = $appid; //服务商appid $post['body'] = $body; //商品描述 $post['mch_id'] = $mch_id; //服务商商户号 $post['nonce_str'] = $nonce_str;//随机字符串 $post['notify_url'] = $notify_url; //支付
2020-06-06 09:49:41 2388 3
原创 input checkbox开关样式
CSS:input[type=checkbox].switch{ outline: none; appearance: none; -webkit-appearance: none; -moz-appearance: none; position: relative; width: 5rem; height: 2.7rem; border-radius: 50px; border: 1px solid #ccc; backgr
2020-05-29 11:33:39 318
原创 js获取时间
var d = new Date();取得当前时间小时: d.getHours();取得当前分钟: d.getMinutes());取得当前秒: d.getSeconds();取得当前毫秒: d.getMilliseconds();当前时间的时间戳: Math.round(new Date() / 1000);当天凌晨0点时间戳: new Date(new Date().t...
2019-06-01 14:47:47 154
原创 查询用户表里的用户并统计每个用户的消费金额
//先统计用户的消费金额 $buildsql= Db::name('account_log a') ->field('sum(a.amount)') ->where('a.user_id=u.user_id') ->where('a.type',17) ...
2019-04-29 10:21:30 5511
原创 关于thinkcmf5 、tp5的高级查询(条件=模糊or数组)
模糊条件查询:$sql['user_login|user_nickname|user_email|mobile'] = ['like', "%$keyword%"]; //表示字段user、login|user、nickname|user、email|mobile 中有$keyword值的数据$list = $usersQuery -> whereOr($sql) -> o...
2018-11-20 17:36:07 3223
原创 非id关联的关联查询
统计plugin_order表中 用户、已支付(pay_status值为1)、活动订单 的金额是否是活动订单在表plugin_order_goods中prom_type字段控制(prom_type值为2则是)$beginThismonth=mktime(0,0,0,date('m'),1,date('Y')); //获取本月一日0点的时间戳$ding = Db::name('plugi...
2018-11-15 15:09:00 183
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人