摘要: https://www.17sucai.com/pins/demo-show?id=36641 阅读全文
posted @ 2021-08-13 17:33 不积跬步无至千里 阅读(47) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/junyi-bk/p/10900450.html 阅读全文
posted @ 2021-08-13 17:30 不积跬步无至千里 阅读(18) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/chbyl/p/7192607.html 阅读全文
posted @ 2021-08-13 17:25 不积跬步无至千里 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 在安全imagemagic时 需要用到 exec很多服务器上安装失败 exec()执行外部命令失败,但没有任何错误信息。 exec执行某命令在命令行下没有问题,但是在php中就出错。这个问题99.99%与权限有关,但是exec执行的命令不会返回错误。一个技巧就是使用管道命令,假设你的exec调用如下 阅读全文
posted @ 2021-08-13 17:23 不积跬步无至千里 阅读(120) 评论(0) 推荐(0) 编辑
摘要: http://www.thinkphp.cn/topic/57984.html 阅读全文
posted @ 2021-08-13 17:19 不积跬步无至千里 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 现在有个需求,定时任务只在指定时间段内执行,例如邮件只在早上九点以后到晚上十点之前发送,其他时间段内不发送.就下面这个判断就行了. date_default_timezone_set("Asia/Shanghai");if(date('G')>8 && date('G')<22){ dump('只在 阅读全文
posted @ 2021-08-13 16:55 不积跬步无至千里 阅读(1063) 评论(0) 推荐(0) 编辑
摘要: 首先从git下载文件下来 https://github.com/lihancong/tonyenc git clone https://github.com/lihancong/tonyenc 加密前记得备份!!! 因为加密了,原文件全部被加密了。作者已经把解密的方法去掉,所以不可逆的哦,自己要小心 阅读全文
posted @ 2021-07-19 15:55 不积跬步无至千里 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 1.连接远程仓库 git remote add origin 远程地址 2. git强制覆盖: git fetch --all git reset --hard origin/master git pull git强制覆盖本地命令(单条执行): git fetch --all && git rese 阅读全文
posted @ 2020-12-17 08:50 不积跬步无至千里 阅读(3770) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/jesse131/p/5516279.html 阅读全文
posted @ 2020-10-29 15:03 不积跬步无至千里 阅读(93) 评论(0) 推荐(0) 编辑
摘要: // 1. 利用(array)和(object),简单处理 $objTemp = (object)array(); $objTemp->a = 1; $objTemp->b = 2; $objTemp->c = 3; $arrTemp = (array)$objTemp; print_r($objT 阅读全文
posted @ 2020-10-29 15:01 不积跬步无至千里 阅读(143) 评论(0) 推荐(0) 编辑