摘要: 公众号(jsapi)支付 一、支付配置 1、支付授权目录设置 登录微信支付商户平台(设置后一般5分钟内生效) 支付授权目录 ①、如果支付授权目录设置为顶级域名,那么只校验顶级域名,不校验后缀; ②、如果支付授权目录设置为多级目录,就会进行全匹配 2、授权域名设置 开发JSAPI支付时,在统一下单接口 阅读全文
posted @ 2020-11-20 17:10 邈宇 阅读(199) 评论(0) 推荐(0)
摘要: 1、时间差 一、月份 ① $start = new DateTime('2018-11-20'); $end = new DateTime('2019-11-15'); $diff = $start->diff($end); $diff_month = $diff->format('%y')*12+ 阅读全文
posted @ 2020-11-18 16:09 邈宇 阅读(161) 评论(0) 推荐(0)
摘要: 主键索引(PRIMARY KEY) ALTER TABLE `table_name` ADD PRIMARY KEY (`column`) 主键索引 是一种特殊的唯一索引,不允许有空值。一个表只能有一个主键(一般是在建表的时候同时创建主键索引)。 与之类似的,外键索引 如果为某个外键字段定义了一个外 阅读全文
posted @ 2020-11-18 15:22 邈宇 阅读(82) 评论(0) 推荐(0)
摘要: 常用的Git命令 git add 添加至暂存区 git add–interactive 交互式添加 git apply 应用补丁 git am 应用邮件格式补丁 git annotate 同义词,等同于 git blame git archive 文件归档打包 git bisect 二分查找 git 阅读全文
posted @ 2020-11-12 19:20 邈宇 阅读(75) 评论(0) 推荐(0)
摘要: 关于两个日期之间 当前日期到次月日期前 1 $time1 = strtotime('2020-08-04'); $time2 = strtotime('2020-11-17'); do { $monarr[$time1][0] = date('Y-m-d',$time1); $monarr[$tim 阅读全文
posted @ 2020-11-04 16:57 邈宇 阅读(103) 评论(0) 推荐(0)
摘要: 公众号登录 注:需要在公众平台设置网页授权域名 1、用户同意授权,获取code url:https://open.weixin.qq.com/connect/oauth2/authorize?appid=APPID&redirect_uri=REDIRECT_URI&response_type=co 阅读全文
posted @ 2020-11-02 17:14 邈宇 阅读(1061) 评论(0) 推荐(0)
摘要: 直接去掉昵称中的图片 preg_match('/[\x{4e00}-\x{9fa5}A-Za-z0-9_]+/u', $userInfo['nickname'],$matches) $userInfo['nickname'] = implode('',$matches); 数据库存储带表情的昵称 1 阅读全文
posted @ 2020-11-02 16:22 邈宇 阅读(229) 评论(0) 推荐(0)
摘要: 复制到剪贴板 <html> <button class="copy" type="submit"> 复制链接 </button> <script> function copyText(text) { var textarea = document.createElement("textarea"); 阅读全文
posted @ 2020-10-30 19:25 邈宇 阅读(896) 评论(0) 推荐(0)
摘要: // 原数组 $data = [ [ 'first'=>'first_yuansu', 'second'=>'qigemingzi', ], [ 'third'=>'disange', 'fourth'=>'last', ] ]; //追加数组 $addArr = [ 'add'=>'test' ] 阅读全文
posted @ 2020-10-27 18:54 邈宇 阅读(2464) 评论(0) 推荐(0)
摘要: 问题一、 is not allowed to connect to this mysql server 原因:修改帐号不允许从远程登陆。 解决:登入MySQL后,更改 "mysql" 数据库的 "user" 表的 "host"项,从"localhost"改称"%" ① mysql -u root - 阅读全文
posted @ 2020-10-26 17:31 邈宇 阅读(101) 评论(0) 推荐(0)