Home > Backend Development > PHP Tutorial > noFrame轻量级php开发框架

noFrame轻量级php开发框架

WBOY
Release: 2016-06-23 13:29:16
Original
1368 people have browsed it

# noFrame
-----------------------------------


noFrame 定义了一套高效的、规范的、轻量级的php开发规范。


noFrame 使用entrance.php代替index.php作为应用的单一入口文件。同时entrance.php作为noFrame的唯一文件,您可以更改为您喜欢的名字。


noFrame 提供了两种路由模式,path_info模式和兼容模式。path_info需要服务器环境的支持,而兼容模式兼容所有支持$_GET的服务器环境。


noFrame path_info模式:$webRoot/Controller/User/login映射为$webRoot/Controller/User.class.php文件的类User的public方法login。


noFrame 兼容模式::$webRoot?Controller/User/login映射为$webRoot/Controller/User.class.php文件的类User的public方法login。


# why noFrame
--------------------------------------


noFrame 不依赖任何拓展模块和服务器环境配置。低耦合


noFrame 用规范代替框架。低性能开销


noFrame 使用时只需拷贝entrance.php到您的应用的根目录。低使用成本


noFrame 可以快速开发出一套规范的、简洁的应用系统。


# use specification
------------------------------------------


noFrame 基于PSR-0规范


noFrame 类所在的文件夹名首字母大写


noFrame 返回的数据为json格式的字符串


noFrame 返回的数据包含处理结果是否成功信息

--------------------------------------------

noFrame现已托管至github。

托管地址:https://github.com/yii153/noFrame

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template