简单易用的轻量级 PHP 框架 phpshow

码农软件 · 软件分类 · Web框架 · 2019-03-24 10:57:21

软件介绍

phpshow,一个简单易用的轻量级 php 框架。快速简单高效是我们的使命,为了快速解决工作中遇到的难题。

框架介绍

  1. 简单的mvc,快速开发而生

  2. 版本1.0

服务器环境

  1. Nginx + php7以上 + mysql

  2. php扩展seaslog、swoole、redis

协议

phpshow 的开源协议为 Apache-2.0,详情参见LICENSE

php配置

php.ini

  1. 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的判断

本文地址:https://codercto.com/soft/d/2039.html

Software Engineering for Internet Applications

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》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

SHA 加密
SHA 加密

SHA 加密工具

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具