1 Star 0 Fork 59

星耀/xiaojiejie

forked from Joe/xiaojiejie 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
post.php 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
Jmw-Power 提交于 2021-02-10 08:44 . 更新移动端页面功能及美化
<?php
ini_set("error_reporting","E_ALL & ~E_NOTICE");
$username=$_POST["userid"];
$url=$_POST["datastr"];
$filename='./user/'.$username.'.json';
if ($username!="" and $url!="") {
if(file_exists($filename)){
$json_string = file_get_contents($filename);
$data = json_decode($json_string, true);
$pd="Y";
$Count = count($data['url']);
for ($i=0; $i < $Count; $i++) {
$urls = $data['url'][$i]['url'];
if ($url==$urls) {
$pd="N";//数据已存在
}
}
if ($pd=="Y") {
$data['url'][$i]['url']=$url;
$json = json_encode($data);
file_put_contents($filename, $json);
}
$datas['status']="YES";
$datas['message']="添加收藏成功!";
echo json_encode($datas);
}else{
$data['url'][0]['url']=$url;
$json = json_encode($data);
file_put_contents($filename, $json);
$datas['status']="YES";
$datas['message']="添加收藏成功!";
echo json_encode($datas);
}
}else{
$datas['status']="NO";
$datas['message']="未知的错误,添加收藏失败!";
echo json_encode($datas);
}
?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/xingyaokeji/xiaojiejie.git
git@gitee.com:xingyaokeji/xiaojiejie.git
xingyaokeji
xiaojiejie
xiaojiejie
master

搜索帮助