会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
盘思动
三思而后折腾!
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
98
99
100
101
102
103
104
105
106
···
133
下一页
2019年6月25日
nginx 自动填充index.php
摘要: if (!-e $request_filename) { rewrite ^/(.+?\.php)/?(.*)$ /$1/$2 last; rewrite ^/(.*)$ /index.php/$1 last; }
阅读全文
posted @ 2019-06-25 15:42 盘思动
阅读(875)
评论(0)
推荐(0)
2019年6月24日
vim 复制粘贴
摘要: Vim的复制粘贴命令无疑是y (yank),p(paster),加上yy,P
阅读全文
posted @ 2019-06-24 22:16 盘思动
阅读(6266)
评论(0)
推荐(0)
申请免费 https 证书
摘要: ### 腾讯云申请免费的参考:https://blog.csdn.net/sfq19881224/article/details/102547669 重点推荐,比freessl也简单,网站介绍nginx类型需要宝塔什么的,centeros即可 * 下面的方法,一个域名或账户,多次申请,会申请不到一年
阅读全文
posted @ 2019-06-24 20:44 盘思动
阅读(412)
评论(0)
推荐(0)
2019年6月20日
php 转化整型需要注意的地方
摘要: public function tt(){ $num = '19.90'; echo $num; echo '--------------'; echo 100 * $num; echo '--------------'; echo (int)(100 * $num); echo '--------------'; echo (string)(1...
阅读全文
posted @ 2019-06-20 11:44 盘思动
阅读(679)
评论(0)
推荐(0)
2019年6月18日
生成6位随机数
摘要: private function make_code(){ $str = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'; $return_str = ''; $str_len = strlen($str); for ($i = 0;$i < 6;$i++){ $ra...
阅读全文
posted @ 2019-06-18 16:21 盘思动
阅读(721)
评论(0)
推荐(0)
2019年6月17日
php://input
摘要: $postXml = $GLOBALS["HTTP_RAW_POST_DATA"]; //接收微信参数 // 接受不到参数可以使用 file_get_contents("php://input"); //PHP 高版本中$GLOBALS["HTTP_RAW_POST_DATA"] 好像已经被废弃了
阅读全文
posted @ 2019-06-17 14:43 盘思动
阅读(1175)
评论(0)
推荐(0)
2019年6月14日
vim 全局替换
摘要: :%s/foo/bar/g 把全部foo替换为bar,全局替换
阅读全文
posted @ 2019-06-14 16:39 盘思动
阅读(201)
评论(0)
推荐(0)
2019年6月12日
微信申请企业红包,绕道方法
该文被密码保护。
阅读全文
posted @ 2019-06-12 20:43 盘思动
阅读(1)
评论(0)
推荐(0)
2019年5月30日
获取函数一次执行中回调次数
摘要: public function tt($times = 1){ $rand = mt_rand(1,5); echo $rand . ''; if ($rand != '5'){ $times++; $this->tt($times); } else { ...
阅读全文
posted @ 2019-05-30 19:09 盘思动
阅读(265)
评论(0)
推荐(0)
2019年5月18日
小程序付款到个人,小程序发放红包到个人不可行
摘要: https://www.cnblogs.com/xinweiyun/p/7667595.html https://www.cnblogs.com/liuyoung/p/7445990.html#
阅读全文
posted @ 2019-05-18 17:00 盘思动
阅读(728)
评论(0)
推荐(0)
上一页
1
···
98
99
100
101
102
103
104
105
106
···
133
下一页
公告