1 Star 0 Fork 17

Charsly/RuleApi

forked from 不暇/RuleApi 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
apiResult.php 760 Bytes
一键复制 编辑 原始数据 按行查看 历史
<?php
error_reporting(0);
$version = "RuleTree App 1.0.0 beta";
$versionIntro = "规则之树手机客户端";
$versionUrl = "";
$versionCode = 10;
require './var/PasswordHash.php';
$hasher = new PasswordHash(8, true);
//加密密码
if(isset($_GET['pw'])){
$pw = $_GET['pw'];
echo $hasher->HashPassword($pw);
}
//用于登陆时验证密码,如果返回值等于newpw,则密码正确
if(isset($_GET['oldpw'])&&isset($_GET['newpw'])){
$hashValidate = $hasher->crypt_private($_GET['oldpw'], $_GET['newpw']);
echo $hashValidate;
}
if(isset($_GET['update'])){
$result=array(
'version'=>$version,
'versionIntro'=>$versionIntro,
'versionUrl'=>$versionUrl,
'versionCode'=>$versionCode
);
//输出json
echo json_encode($result);
}
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wujinyuwuchao/RuleApi.git
git@gitee.com:wujinyuwuchao/RuleApi.git
wujinyuwuchao
RuleApi
RuleApi
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385