- 授权协议: Apache
- 开发语言: PHP
- 操作系统: 跨平台
- 软件首页: https://github.com/showx/phpshow
- 软件文档: https://github.com/showx/phpshow/blob/master/README.md
- 官方下载: https://github.com/showx/phpshow
软件介绍
phpshow,一个简单易用的轻量级 php 框架。快速简单高效是我们的使命,为了快速解决工作中遇到的难题。
框架介绍
简单的mvc,快速开发而生
版本1.0
服务器环境
Nginx + php7以上 + mysql
php扩展seaslog、swoole、redis
协议
phpshow 的开源协议为 Apache-2.0,详情参见LICENSE
php配置
php.ini
short_open_tag = On ;php短标记打开 ,模板要使用这样的标记
nginx配置
server{
...
if ( !-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
location / {
try_files $uri $uri/ /index.html;
}
...
}server中增加$request_file的判断
Software Engineering for Internet Applications
Eve Andersson、Philip Greenspun、Andrew Grumet / The MIT Press / 2006-03-06 / USD 35.00
After completing this self-contained course on server-based Internet applications software, students who start with only the knowledge of how to write and debug a computer program will have learned ho......一起来看看 《Software Engineering for Internet Applications》 这本书的介绍吧!
