首页
友情链接
大事记
Search
1
怎么对接微验卡密验证到自己软件内
377 阅读
2
把deepseek部署到自己的网站上
197 阅读
3
为博客添加动态弹簧人物效果
148 阅读
4
怎么制作随机图片API
146 阅读
5
如何搭建属于自己的域名邮箱
125 阅读
默认分类
教程
源码
闲聊
美化
工具
登录
/
注册
Search
标签搜索
原创
转载
初白
累计撰写
19
篇文章
累计收到
40
条评论
首页
栏目
默认分类
教程
源码
闲聊
美化
工具
页面
友情链接
大事记
搜索到
19
篇与
的结果
2024-11-03
怎么对接51LA让你的网站实时查看人数及报告
点击跳转51LA {collapse}{collapse-item label="51LA手机版" open} {/collapse-item}{collapse-item label="51LA电脑版"} {/collapse-item}{/collapse}教程1.注册并登录51LA2.点击v6流量统计系统 点击跳转V6 3.点击添加应用统计4.填写应用名称5.开启域名强匹配,并在框里填写自己的域名{card-describe title="填写Tips:"}多个域名用回车换行分隔。若域名带有 www ,请务必填写完整的域名。如完整域名为 www.51.la ,填写 51.la 将无法统计。可使用通配符 * 号在域名中代替任意字符。如:*.51.la 表示包含 51.la 及其下二级域名的所有URL,如a.51.la,b.51.la 等。{/card-describe}{card-describe title="注意"}站群统计、域名带中文、端口号、IP的用户请关闭域名强匹配{/card-describe}6.行业类别填写自己网站所属的行业,或随便填都可以7.有三个安装代码的选项,我们选择手动安装即可8.把代码复制下来 9.接下来吧代码整贴到你的项目上面 10.点击安装完成就可以了
2024年11月03日
65 阅读
1 评论
0 点赞
2024-10-27
免费服务器/虚拟主机推荐
1.三丰云,三丰云从2000年开始提供免费主机/服务器,值得信赖 点击跳转2.阿贝云,阿贝云也是一家提供免费服务器/虚拟主机的idc 点击跳转3.阿里云服务器免费试用 点击跳转
2024年10月27日
45 阅读
0 评论
0 点赞
2024-08-31
怎么制作随机图片API
1.在根目录创建一个名为img的文件夹2.在创建一个.php的文件,名字随意效果 3.进入你创建的php文件4.复制粘贴以下代码<?php $img_array = glob("img/*.{webp,gif,jpg,png}",GLOB_BRACE); $img = array_rand($img_array); $dz = $img_array[$img]; header("Location:".$dz); ?> 5.粘贴完成后进入img文件夹6.在img文件夹里放入你想要的图片7.访问就可以了
2024年08月31日
146 阅读
3 评论
1 点赞
2024-08-15
今天是日本投降79周年
【历史上的今天】1945年8月15日正午,日本天皇向全日本广播,接受中美英三国促令日本投降之波茨坦公告,实行无条件投降,结束战争。毛主席说过的名话人不犯我,我不犯人;人若犯我,我必犯人!—毛主席一切反动派都是纸老虎—毛主席中国人民从此站起来了—毛主席独有英雄驱虎豹,更无豪杰怕熊罴!凡是敌人反对的,我们就要拥护;凡是敌人拥护的,我们就要反对—毛主席东风吹,战鼓擂,现在世界上究竟谁怕谁?-毛主席最后:铭记历史,勿忘国耻
2024年08月15日
34 阅读
0 评论
0 点赞
2024-08-14
Typecho评论显示操作系统和浏览器
先看效果打开functions.php文件,粘贴下面的代码// 获取浏览器信息 function getBrowser($agent) { if (preg_match('/MSIE\s([^\s|;]+)/i', $agent, $regs)) { $outputer = 'Internet Explore'; } else if (preg_match('/FireFox\/([^\s]+)/i', $agent, $regs)) { $str1 = explode('Firefox/', $regs[0]); $FireFox_vern = explode('.', $str1[1]); $outputer = 'FireFox'; } else if (preg_match('/Maxthon([\d]*)\/([^\s]+)/i', $agent, $regs)) { $str1 = explode('Maxthon/', $agent); $Maxthon_vern = explode('.', $str1[1]); $outputer = 'MicroSoft Edge'; } else if (preg_match('#360([a-zA-Z0-9.]+)#i', $agent, $regs)) { $outputer = '360 Fast Browser'; } else if (preg_match('/Edge([\d]*)\/([^\s]+)/i', $agent, $regs)) { $str1 = explode('Edge/', $regs[0]); $Edge_vern = explode('.', $str1[1]); $outputer = 'MicroSoft Edge'; } else if (preg_match('/UC/i', $agent)) { $str1 = explode('rowser/', $agent); $UCBrowser_vern = explode('.', $str1[1]); $outputer = 'UC Browser'; } else if (preg_match('/QQ/i', $agent, $regs)||preg_match('/QQ Browser\/([^\s]+)/i', $agent, $regs)) { $str1 = explode('rowser/', $agent); $QQ_vern = explode('.', $str1[1]); $outputer = 'QQ Browser'; } else if (preg_match('/UBrowser/i', $agent, $regs)) { $str1 = explode('rowser/', $agent); $UCBrowser_vern = explode('.', $str1[1]); $outputer = 'UC Browser'; } else if (preg_match('/Opera[\s|\/]([^\s]+)/i', $agent, $regs)) { $outputer = 'Opera'; } else if (preg_match('/Chrome([\d]*)\/([^\s]+)/i', $agent, $regs)) { $str1 = explode('Chrome/', $agent); $chrome_vern = explode('.', $str1[1]); $outputer = 'Google Chrome'; } else if (preg_match('/safari\/([^\s]+)/i', $agent, $regs)) { $str1 = explode('Version/', $agent); $safari_vern = explode('.', $str1[1]); $outputer = 'Safari'; } else{ $outputer = 'Google Chrome'; } echo $outputer; } // 获取操作系统信息 function getOs($agent) { $os = false; if (preg_match('/win/i', $agent)) { if (preg_match('/nt 6.0/i', $agent)) { $os = 'Windows Vista · '; } else if (preg_match('/nt 6.1/i', $agent)) { $os = 'Windows 7 · '; } else if (preg_match('/nt 6.2/i', $agent)) { $os = 'Windows 8 · '; } else if(preg_match('/nt 6.3/i', $agent)) { $os = 'Windows 8.1 · '; } else if(preg_match('/nt 5.1/i', $agent)) { $os = 'Windows XP · '; } else if (preg_match('/nt 10.0/i', $agent)) { $os = 'Windows 10 · '; } else{ $os = 'Windows X64 · '; } } else if (preg_match('/android/i', $agent)) { if (preg_match('/android 9/i', $agent)) { $os = 'Android Pie · '; } else if (preg_match('/android 8/i', $agent)) { $os = 'Android Oreo · '; } else { $os = 'Android · '; } } else if (preg_match('/ubuntu/i', $agent)) { $os = 'Ubuntu · '; } else if (preg_match('/linux/i', $agent)) { $os = 'Linux · '; } else if (preg_match('/iPhone/i', $agent)) { $os = 'iPhone · '; } else if (preg_match('/mac/i', $agent)) { $os = 'MacOS · '; }else if (preg_match('/fusion/i', $agent)) { $os = 'Android · '; } else { $os = 'Linux · '; } echo $os; }
2024年08月14日
61 阅读
1 评论
1 点赞
1
2
3
4