- 博客(3)
- 收藏
- 关注
原创 PHP实现RSA算法
sample-php-rsaPHP RSA加解密原理实现(不调用php内置的rsa函数,纯方法实现)原理参考: RSA算法原理https://zhuanlan.zhihu.com/p/48249182示例:$rsa = new sample_rsa();$key = $rsa->createKey();$encrypt_data = $rsa->encrypt_data($key, 'test');echo $encrypt_data.PHP_EOL;$decrypt_d
2021-07-15 17:33:13
425
2
原创 fastadmin 表头悬浮固定顶部
fastadmin 表头悬浮固定顶部将下述代码放到模块控制器js中的index方法内:$(function(){ var sourceTable = $("#table");//table id var sourceTableHead = $("#table thead tr");//table thead tr id var headHeight = sourceTableHead.height();//table thead tr height //copy table and
2021-07-14 16:40:11
1241
原创 如何用PHP简单快速实现SPA应用
如何用PHP简单快速实现SPA应用第一步,添加asyncpage方法第二步,编写具有异步无缝跳转的HTML页面前端实现原理附录框架下载第一步,添加asyncpage方法use Application\Application;use Application\Route;use Application\Request;Route::request('/to', function(){ //this function use to get the frontend async page reques
2021-06-16 02:45:26
497
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人