【防红链接系统源码】自带7个接口的冰狱防红系统 支持直连和跳转防红

news/2024/10/29 1:23:36/

内容目录

  • 一、详细介绍
  • 二、效果展示
    • 1.部分代码
    • 2.效果图展示
  • 三、学习资料下载


一、详细介绍

一共5个前台模板随便换。

支持对接易支付和码支付!!自己申请接口即可。

另外自己测试了下。可以生成短链,但访问的时候没能成功跳转。

二、效果展示

1.部分代码

代码如下(示例):

<div class="Box"><div style="cursor:pointer" id="Header" onclick='javascript:location.href="/"'><h1><?php echo $conf['sitename']; ?></h1></div><!--span style="float: right; margin-top:5px">(普通用户仅支持30天内秒级实时统计) </span--><div id="Overview" class="Border"><span><h1>实时概览</h1><i> 统计页面:<a href="http://<?= $domain?>" target="_blank"><?= $domain?></a></i></span><ul><!--li class="vip"><i>vip</i><em>No</em></li--><li class="pv"><i>PV</i><em><?= $pvs?></em></li><li class="uv"><i>UV</i><em><?= $uvs?></em></li><li class="ip"><i>IP</i><em><?= $ips?></em></li></ul></div><div id="Antecedents" class="Border"><h1>客户端</h1><div class="List"><div id="chart" style="max-width:600px;height:300px; background:#FFF"></div><script>$(function () {<?php $pcs=$DB->count("SELECT count(*) from quan_log WHERE domain='$domain' and user_agent like '%Windows%' "); $Iphones=$DB->count("SELECT count(*) from quan_log WHERE domain='$domain' and user_agent like '%iPhone%' "); $Androids=$DB->count("SELECT count(*) from quan_log WHERE domain='$domain' and user_agent like '%Android%' "); $Winphones=$DB->count("SELECT count(*) from quan_log WHERE domain='$domain' and user_agent like '%Winphone%' "); $Pads=$DB->count("SELECT count(*) from quan_log WHERE domain='$domain' and user_agent like '%Pad%' "); ?>var data = [['PC', <?= $pcs;?>], ['Iphone', <?= $Iphones;?>], ['Android', <?= $Androids;?>],['Winphone', <?= $Winphones;?>], ['Pad', <?= $Pads;?>]];$.jqplot('chart', [data], {seriesDefaults: {renderer:$.jqplot.PieRenderer,rendererOptions: {showDataLabels: true,dataLabels: 'value',seriesColors: ["#4bb2c5", "#c5b47f", "#EAA228", "#579575", "#839557", "#958c12", "#953579", "#4b5de4", "#d8b83f", "#ff5800", "#0085cc"],shadow:false,       //为饼的每个部分的边框设置阴影,以突出其立体效果 //默认显示的分类颜色,如果分类的数量超过这里的颜色数量,则从该队列中第一个位置开始重新取值赋给相应的分类sliceMargin: 9}},legend: {show: true,location: "nw"}});});</script></div></div>

2.效果图展示

请添加图片描述
请添加图片描述
请添加图片描述


三、学习资料下载

蓝奏云:https://qumaw.lanzoul.com/iq0OW0ml953g


http://www.ppmy.cn/news/1387501.html

相关文章

粤嵌6818开发板通过MobaXterm使用SSH连接开发板

链接&#xff1a;https://pan.baidu.com/s/18ISP4Ub1HtQx6jCvTQTUHw?pwdfjmu 提取码&#xff1a;fjmu 1.把SSH_config.tar.bz 下载到开发板中 2.解压 SSH_config.tar.bz 解压命令&#xff1a;tar -xzvf SSH_config.tar.bz 3.配置SSH 进入SSH/openssh目录&am…

- 概述 - 《设计模式(极简c++版)》

本文章属于专栏《设计模式&#xff08;极简c版&#xff09;》 “如果我看得更远&#xff0c;那是因为我站在巨人的肩膀上。” -牛顿 本系列&#xff0c;主要结合个人经验&#xff0c;对《设计模式&#xff1a;可复用面向对象软件的基础》书中经典设计模式&#xff0c;用极简的语…

汽车电子零部件(6):DMS/OMS、CMS

前言: 有一个部件过去不曾有,而如今有可能要标准化标配化,那就是Driver Monitoring System (DMS)驾驶员监控系统、Occupant Monitoring System (OMS)乘客监控系统和Camera Monitor System(CMS)摄像头监控系统。 汽车视觉技术的创新推动先进驾驶辅助系统的变革(ADAS),并…

IIS上部署.netcore WebApi项目及swagger

.netcore项目一般是直接双击exe文件&#xff0c;运行服务&#xff0c;今天有个需求&#xff0c;需要把.netcore项目运行在IIS上&#xff0c;遇到了一个小坑&#xff0c;在这里记录一下。 安装IIS&#xff0c;怎么部署站点&#xff0c;这些过于简单就不细说了&#xff0c;不知道…

TrueNAS怎么设置中文,最新2024版本安装详细说明

首先我们做好安装前的准备工作 1&#xff0c;ISO镜像安装包 2&#xff0c;虚拟机&#xff08;建议使用ESXI虚拟机环境&#xff09; 如果是物理机安装&#xff0c;建议先给底层安装虚拟机系统esxi&#xff0c;再在上面安装方便以后的管理&#xff0c;如果你想物理机直接安装&a…

SpringBoot异常:类文件具有错误的版本 61.0, 应为 52.0的解决办法

问题&#xff1a; java: 无法访问org.mybatis.spring.annotation.MapperScan 错误的类文件: /D:/Program Files/apache-maven-3.6.0/repository/org/mybatis/mybatis-spring/3.0.3/mybatis-spring-3.0.3.jar!/org/mybatis/spring/annotation/MapperScan.class 类文件具有错误的…

elasticsearch篇:DSL查询语法

1.DSL查询文档 众所周知&#xff0c;elasticsearch的查询依然是基于JSON风格的DSL来实现的。 1.1. DSL查询分类 Elasticsearch提供了基于JSON的DSL&#xff08;Domain Specific Language&#xff09;来定义查询。常见的查询类型包括&#xff1a; 查询所有&#xff1a;查询出…

springboot实战笔记

用户模块开发 用户登录接口实现 根据token获取用户信息 检查账号是否可用 用户注册接口实现