加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
demo.php 644 Bytes
一键复制 编辑 原始数据 按行查看 历史
ren3016 提交于 2023-11-18 13:13 . file name modify
<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
include "vendor/autoload.php"; // composer自动加载
// include_once "src/opensslcrypt.php"; // 直接引用文件
use ren3016\opensslcrypt\OpenSslCrypt;
// 实例化类,创建 $crypt 对象
$crypt = new OpenSslCrypt();
// 使用类方法 enc 进行 字符串或数组 加密
$crypt_str = $crypt->enc("Hello World!");
echo "Hello World! 加密后是:" . $crypt_str . "<br><br>\n\n";
// 使用类方法 dec 把加密字符串 解密为 字符串或数组
echo "再解密后是:" . $crypt->dec($crypt_str);
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化