代码拉取完成,页面将自动刷新
<?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);
}
?>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。