功能介绍:
+收集50+可签到板块 包含大量隐藏板块
+支持一键签到及托管签到
+支持托管记录查询
+支持更新托管密码
+支持自定义广告位、首页公告等.
+支持自定义接口地址
+…更多功能请自行品尝
安装环境:PHP7+、无需数据库
安装教程:上传压缩包至根目录解压即可
配置教程:请使用文本编辑器 编辑config.php
获取方式:https://www.ffu9.com/2021/10/12/8399.html
<?php
//引入配置文件
include("config.php");
@header('Content-Type: application/json; charset=UTF-8');
$act= $_GET['act'] ;
switch($act){
case 'qd':
$name = $_GET['name'];
$pass = $_GET['pass'];
$iszd = $_GET['iszd'];
$qd_url = "$api_host/api/qd.php?name=$name&pass=$pass&iszd=$iszd";
$qd_data = file_get_contents($qd_url);
print_r($qd_data);
break;
case 'cha':
$name = $_GET['name'];
$cha_url = "$api_host/api/cha.php?name=$name";
$cha_data = file_get_contents($cha_url);
print_r($cha_data);
break;
case 'up':
$name = $_GET['name'];
$pass = $_GET['pass'];
$npass = $_GET['npass'];
$isup = $_GET['isup'];
$up_url = "$api_host/api/up.php?name=$name&pass=$pass&npass=$npass&isup=$isup";
$up_data = file_get_contents($up_url);
print_r($up_data);
break;
default:
exit('{"code":-4,"msg":"No Act"}');
break;
}
本文摘自 :https://blog.51cto.com/u