首页
文章归档
1
Mysql8.0 恢复root权限
2
复制到剪切板
3
JS 中划线转驼峰
4
py-kms 激活步骤
5
JS sm4 国密加解密
Malson
累计撰写
100
篇文章
累计创建
55
个标签
累计收到
0
条评论
栏目
首页
文章归档
搜索
标签搜索
js
激活
py-kms
sm4
国密
卸载
pkg
关联查询
join
中文
正则
dock
mdadm
阵列
raid
文本
映射
ssh
thinkphp
伪静态
samba
php
golang
vue
crontab
http
nginx
mysql
javascript
coding
git
docker
html
mobile
移动端
textarea
css
linux
ffmpeg
centos
扩容
lvm
虚拟机
ubuntu
字体大小
微信浏览器
rem
surface
windows
宝塔
挂载
磁盘
homebrew
mac
随机
目 录
CONTENT
以下是
php
相关的文章
2022-07-13
ThinkPHP 伪静态
Nginxlocation / {if (!-e $request_filename){rewrite ^(.*)$ /index.php?s=$1 last; break;}}Apache <IfModule mod_rewrite.c> Options +FollowSy
2022-07-13
258
0
0
PHP
2022-06-25
PHP 捕获所有异常
register_shutdown_function( "fatal_handler" );set_error_handler("error_handler");define('E_FATAL', E_ERROR | E_USER_ERROR
2022-06-25
108
0
0
PHP
2022-06-25
PHP 递归排序 无限级分类数据
/** * 递归无限级分类的数据 * * @param array $arr 需要分类的数组 * @param int $pid 父ID * * @return array 分类好的数据 */function recursiveSorting ( $arr , $pid = 0 ){ $_
2022-06-25
83
0
0
PHP
2022-06-25
PHP 二维数组按某个键值排序
$arr=[ array( 'name'=>'小坏龙', 'age'=>28 ), array( 'name'=>'小坏龙2',
2022-06-25
85
0
0
PHP
2022-06-25
PHP 根据两坐标绘制延长线
function calcPoiGroupsExtendPoi($startPoi, $endPoi, $d) { $r = sqrt(pow($startPoi['x'] - $endPoi['x'], 2) + pow($startPoi[
2022-06-25
64
0
0
PHP
2022-06-25
PHP 加解密函数
/** * 加密 * * @param $data string 需要加密的数据 * @param $key string 秘钥 * * @return string */function encrypt ( $data , $key ){ $key = md5( $key ); $x
2022-06-25
54
0
0
PHP
2022-06-25
PHP 解压ZIP
<?phpclass unZip{ private $zipFileName; public function findZipFile() { $_path = opendir(__DIR__); while ($_fileNameInPath =
2022-06-25
147
0
0
PHP
2022-06-25
PHP 进制转换
内置函数转换表二进制八进制十进制十六进制二进制-decbinhex2bin八进制-decoct十进制bindecoctdec-hexdec十六进制bin2hexdechex-任意进制转换函数:base_convert(string $number, int $frombase, int $tobas
2022-06-25
56
0
0
PHP
2022-06-25
PHP 处理跨域
$origin = isset($_SERVER['HTTP_ORIGIN'])? $_SERVER['HTTP_ORIGIN'] : ''; $allow_origin = array( 'http://www.client.
2022-06-25
57
0
0
PHP
2022-06-25
PHP 删除文件夹
function _clearTempFold($dir) { if (!is_dir($dir)) { return; } $_dirHandle = opendir($dir); while ($_
2022-06-25
57
0
0
PHP
1
2