上一页 1 ··· 98 99 100 101 102 103 104 105 106 ··· 133 下一页
摘要: if (!-e $request_filename) { rewrite ^/(.+?\.php)/?(.*)$ /$1/$2 last; rewrite ^/(.*)$ /index.php/$1 last; } 阅读全文
posted @ 2019-06-25 15:42 盘思动 阅读(875) 评论(0) 推荐(0)
摘要: Vim的复制粘贴命令无疑是y (yank),p(paster),加上yy,P 阅读全文
posted @ 2019-06-24 22:16 盘思动 阅读(6266) 评论(0) 推荐(0)
摘要: ### 腾讯云申请免费的参考:https://blog.csdn.net/sfq19881224/article/details/102547669 重点推荐,比freessl也简单,网站介绍nginx类型需要宝塔什么的,centeros即可 * 下面的方法,一个域名或账户,多次申请,会申请不到一年 阅读全文
posted @ 2019-06-24 20:44 盘思动 阅读(412) 评论(0) 推荐(0)
摘要: 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)
摘要: 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)
摘要: $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)
摘要: :%s/foo/bar/g 把全部foo替换为bar,全局替换 阅读全文
posted @ 2019-06-14 16:39 盘思动 阅读(201) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2019-06-12 20:43 盘思动 阅读(1) 评论(0) 推荐(0)
摘要: 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)
摘要: 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 下一页