tp5er/think-hashing
最新稳定版本:1.0.0
Composer 安装命令:
composer require tp5er/think-hashing
包简介
The thinkphp Hashing package.
README 文档
README
The thinkphp Hashing package.
安装
composer require tp5er/think-hashing
使用
use tp5er\think\hashing\facade\Hash;
//加密
$hashedValue= Hash::make("123456");
//验证密码是否有效
$check = Hash::check("123456",$hashedValue);
//加密
$hashedValue = hash_make("123456");
//验证密码是否有效
hash_check("123456",$hashedValue);
统计信息
- 总下载量: 145
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-05-05