1 Star 0 Fork 0

高泽正/Electronic document transmission system

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
set.php 1.16 KB
一键复制 编辑 原始数据 按行查看 历史
高泽正 提交于 2021-12-12 09:23 . 电子公文传输系统
<?php
$myfile = fopen("person.txt", "a+") or die("Unable to open file!");
fclose($myfile);
$myfile = fopen("person.txt", "r") or die("Unable to open file!");
if(!preg_match("/^[a-zA-Z0-9]*$/",$_POST['sid'])||!preg_match("/^[0-9]*$/",$_POST['spassword']))
{
echo "输入账号或密码的格式错误,账号只能是英文字母或数字的组合,密码只能是数字的组合";
return;
}
function gets($myfile)
{
$num="";
$num2="";
while(1)
{
if(feof($myfile)||($num2=fgetc($myfile))=="&")
{
return $num;
}
$num=$num.$num2;
}
}
if(!feof($myfile))
fgetc($myfile);
while(!feof($myfile))
{
$num3=gets($myfile);
$num4=gets($myfile);
if($num3==$_POST['sid'])
{
echo "账号与存在,请用其他账号";
fclose($myfile);
return ;
}
}
fclose($myfile);
$myfile = fopen("person.txt", "a+") or die("Unable to open file!");
fwrite($myfile,"&");
fwrite($myfile,$_POST['sid']);
fwrite($myfile,"&");
fwrite($myfile,$_POST['spassword']);
fclose($myfile);
mkdir("upload/".$_POST['sid']);
mkdir("upload/".$_POST['sid']."/send");
$myfile = fopen("upload/".$_POST['sid']."/send/sendingperson.txt","w");
fclose($myfile);
echo "注册成功!";
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gao_ze_zheng/electronic-document-transmission-system.git
git@gitee.com:gao_ze_zheng/electronic-document-transmission-system.git
gao_ze_zheng
electronic-document-transmission-system
Electronic document transmission system
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385