自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(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 366 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 1025

原创 如何用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 443

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除