laojin / pc28
laojin/pc28
dev-main
2022-09-14 15:55 UTC
This package is auto-updated.
Last update: 2024-09-14 20:45:53 UTC
README
PHPCMS 升级版
项目基于 PHPCMS
v9.6.3
进行升级改造,主要目标
- 代码规范
psr-1
psr-2
-
include
加载 =>namespace
加载30%
- 基于
phpstorm doc
修复各种 ide warnning30%
- 后台界面的升级采用
google material design
1%
基于以上目标改造后,代码将
- 更加现代化,可在高版本php(如php7)上运行
- 界面更加统一美观
- 更好的开发体验,代码文档的完善
location ~ .*.html$ { rewrite ^/content-([0-9]+)-([0-9]+)-([0-9]+).html /index.php?m=content&c=index&a=show&catid=$1&id=$2&page=$3 last; rewrite ^/show-([0-9]+)-([0-9]+)-([0-9]+).html /index.php?m=content&c=index&a=show&catid=$1&id=$2&page=$3 last; rewrite ^/list-([0-9]+)-([0-9]+).html /index.php?m=content&c=index&a=lists&catid=$1&page=$2 last; }