1 Star 0 Fork 0

羲云科技/羲云帮助文档在线创作工具 php版

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
file_get.php 939 Bytes
一键复制 编辑 原始数据 按行查看 历史
羲云科技 提交于 2023-06-11 14:05 . 主文件
<?php
$data = $_POST;
if(!$data){exit;}
$sign='羲云网络';
$password='jakeycis';
if($data['ac']=='update'){
$token=$data['token'];
$timestep=$data['timestep'];
$the_token=md5($sign.$timestep);
//echo $data['token'].' '.$the_token.' '.$timestep;
$pass=$data['password'];
if($pass!=md5($password)){die('密码错误');}
if($token!=$the_token){die('验证码错误');}
$file=$data['file'].'.'.$data['ext'];
$path='./';
if($data['sub']){
$path='./'.$data['sub'].'/';
if(!file_exists($path)){mkdir($path,0700);}
}
if(!$data['code']){die('数据错误');}
save_file($path,$file,$data['code']);
echo 'ok';
}else{exit;}
function save_file($path,$name,$str){//保存文件 save_file('目录',‘文件名’,'字符');
if(substr($path,-1,1)!="/"){$path.='/';}
if(!file_exists($path)){mkdir($path,0700);}
$filename=$path.$name;
$handle=fopen($filename,"w");
if (fwrite($handle,$str)){return true;}else{return false;}
fclose($handle);
}
?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/xiyunnet/xi-help-creator.git
git@gitee.com:xiyunnet/xi-help-creator.git
xiyunnet
xi-help-creator
羲云帮助文档在线创作工具 php版
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385