- 2021/04/15
- |
- 知识
- |
- Views: 9,382
- |
- 0 Replies
A和B两个站点,全部使用微信扫码登录,返回A站点的URL可以将登陆信息写进B站点数据库,具体有登陆unionid和昵称等信息,加上登陆时间,临时生成的密钥写入成功后跳转B站点URL,参数带上密钥在B站点与数据库信息验证,如果在允许时间内(如半分钟或1分钟),则验证通过,写session,否则需重新授权登陆
- 2019/11/26
- |
- 知识
- |
- Views: 12,558
- |
- 0 Replies
过滤掉相关的DIV如要过滤某网站的如例1: home.firefoxchina.cn##div#module-game元素#名字 过滤掉ID为名字的元素div.名字 class为名字的DIVtable[width="80%"] 过滤掉元素的宽度为80%的表格以下为自定义的简约式广告过滤finance.ifeng.com#div.hot_textss_none
home.firefoxchina.cn##div#module-game
home.firefoxchina.cn##div#module-cart
home.firefoxchina.cn##div[trace-key=&qu...
- 2019/04/08
- |
- 知识
- |
- Views: 12,530
- |
- 0 Replies
https://open.weixin.qq.com/connect/oauth2/authorize?appid=XXX&redirect_uri=XXX&response_type=code&scope=snsapi_login&state=#wechat_redirect
- 2018/03/26
- |
- 知识
- |
- Views: 8,912
- |
- 0 Replies
mysql查询到数据的记录,需要达到将同一天的数据合并到一起,只显示一次日期。最终效果为:X月X日 第一条记录,第二条记录,第三条记录;X月X日 第一条记录$res = [];
$result = mysql_query("select * from table order by sj desc");
while ($item = mysql_fetch_assoc($result)) {
$date = substr($item['sj'], 0, 10);
$res[$date][] = $item;
}
var_dump($...
- «
- 1
- 2