- 2019/11/26
- |
- 分享
- |
- Views: 1,898
- |
- 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: 2,479
- |
- 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/05/26
- |
- 分享
- |
- Views: 4,307
- |
- 1 Replies
首先,得确保处于一个工作组下,且处于一个局域网下面其次,网络共享需打开最后,开启SMB 1.0文件共享支持功能具体方法为:控制面板--程序和功能--启用或关闭windows功能--勾选SMB
- 2018/04/29
- |
- 分享
- |
- Views: 3,455
- |
- 0 Replies
阿里云提供ntp1.aliyun.com
ntp2.aliyun.com
ntp3.aliyun.com
ntp4.aliyun.com
ntp5.aliyun.com
ntp6.aliyun.com
ntp7.aliyun.com
- 2018/03/26
- |
- 日志
- |
- Views: 3,252
- |
- 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
- 3
- 4
- »