加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
get_wd.php 1.83 KB
一键复制 编辑 原始数据 按行查看 历史
酷侠 提交于 2023-10-29 04:16 . 功能文件
<html>
<?php
header("content-type:text/html;charset=utf-8");
$user=$_GET['z'];
$wd=$_GET['w'];
require 'config.php';
$lj=$pz['lj'];
//酷侠写于2021/6/14
if($user==''|| $wd==''){
echo '<div style="color:red;font-size=100px;margin:auto;text-align=center;"align"center">(´°Δ°`)抱歉!<br>该文档不存在或已被删除!</div>';
}else{
$bt=file_get_contents("$lj/$user/api/$wd/bt");
$nr=file_get_contents("$lj/$user/api/$wd/nr");
$sj=file_get_contents("$lj/$user/api/$wd/sj");
}
?>
<head lang="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="Shortcut Icon" href="img/logo.jpg">
<link href = "pz.css" rel = "stylesheet" type = "text/css"/>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
body{
background: url("https://www.dmoe.cc/random.php");
background-attachment: fixed;
background-size: cover;
text-align: center;
}
.zt{
width: 80vw;
height: 80vh;
background: white;
margin: auto;
margin-top: 5vh;
border-radius: 15px;
opacity: 0.5;
font-size: 45px;
overflow: auto;
transition: 0.5s;
}
.zt:hover{
width: 80vw;
height: 80vh;
background: white;
margin: auto;
margin-top: 5vh;
border-radius: 15px;
opacity: 0.9;
font-size: 45px;
overflow: auto;
}
.bt{
width: 75vw;
height: 10vh;
background: #5DC6FF;
margin: auto;
margin-top: 2vh;
border-radius: 20px;
opacity: 0.5;
font-size: 5vh;
overflow:auto;
transition: 0.5s;
color:white;
}
.bt:hover{
width: 75vw;
height: 10vh;
background: #5DC6FF;
margin: auto;
margin-top: 2vh;
border-radius: 20px;
opacity: 0.9;
font-size: 5vh;
overflow:auto;
color:white;
}
</style>
<title>云文档</title>
<body>
<div class="bt"><?php echo $bt; ?></div>
<div class="zt"><?php echo $nr; ?></div>
<div class="bt"><?php echo $sj; ?></div>
<div class="bt" onclick="location.href='<?php echo $pz['host']; ?>'">云文档官网</div>
</body>
</head>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化