PHP
冬冬君
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
PHP 中使用 strtotime "+1 month" 时发现的坑
echo date( "Y-m-d", strtotime( "2009-01-31 +1 month" ) ); // PHP: 2009-03-03echo date( "Y-m-d", strtotime( "2009-01-31 +2 month" ) ); // PHP: 2009-03-31由于,2月根本没有30号、31号,所以上面的 +1 month 直接跳到了三月!原创 2017-03-26 21:30:07 · 10245 阅读 · 0 评论 -
Nginx 隐藏入口文件 index.php
添加重写规则Nginxlocation / { index index.html index.htm index.php; #autoindex on; if (!-e $request_filename) { rewrite ^/(.*)$ /index.php/$1; }}原创 2017-09-15 18:33:56 · 1940 阅读 · 0 评论 -
Phpstorm 设置注释符缩进位置
默认情况下,快捷键 Ctrl + / 会将注释符 // 放在第一列function foo()想要更改为根据缩进位置放置注释符function foo()设置方法如图所示原创 2017-09-20 11:19:08 · 5272 阅读 · 0 评论 -
百度编辑器(ueditor)踩坑,图片转存无法使用
Ueditor 默认情况下,从 Word 中复制的内容粘贴在编辑器时,图片不会自动上传保存,除非单独复制粘贴图片。原创 2018-02-06 17:19:48 · 17059 阅读 · 35 评论
分享