
AreoWarm
实践才是检验真理的唯一标准
展开
-
单页微信分享 php+html+js 混编最简版
前提是:你有 appId appSecret<?phpfunction my_curl_get($url){ $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch,CURLOPT_POST,0); $res = curl_exec($ch);原创 2017-10-28 09:32:04 · 1265 阅读 · 0 评论 -
微信隐藏/显示右上角菜单接口
微信官方jsapi提供了界面操作接口,用来控制微信网页右上角的菜单,下面看看微信官方文档关于界面操作接口的说明。 隐藏右上角菜单接口wx.hideOptionMenu(); 显示右上角菜单接口wx.showOptionMenu(); 关闭当前网页窗口接口wx.closeWindow(); 批量隐藏功能按钮接口wx.hideMenuItems({ menuList: [] // 要隐转载 2017-10-25 10:02:38 · 6648 阅读 · 0 评论 -
伪造页面下拉查看当前域名
var doc = $(document);var _touches_point1=0;var _touches_point2=0;addEventListener("touchstart", function(e) { _touches_point1 = e.touches[0].pageY; });addEventListener("touchmove",f原创 2017-10-25 16:14:59 · 621 阅读 · 1 评论 -
mysql保存Emoji表情或微信文字、图文回复带Emoji等微信表情图标?
背景:客户需要在自动回复的文字、图文表情上使用Emoji表情?原因:Mysql表设计时,都是用UTF8字符集的,Mysql的utf8字符集是3字节的,而emoji是4字节,所以保存修改等操作会出错。准备: mysql的版本必须为 v5.5.3 或更高 把数据库的编码改成 utf8mb4 -- UTF-8 Unicode 然后需要存储emoji表情的字段编码...原创 2018-09-20 20:32:37 · 1245 阅读 · 0 评论