# noframe
-----------------------------------
Noframe defines a set of efficient, prescriptive, lightweight PHP development specifications.
Noframe uses entrance.php instead of index.php as the single entry file for the application. At the same time entrance.php as the only file for noframe, you can change it to your favorite name.
The noframe provides two routing modes, path_info mode and compatibility mode. Path_info requires support for the server environment, and compatibility mode is compatible with all server environments that support $_get.
Noframe path_info Mode: The public method of the class User that maps to the $webroot/controller/user.class.php file $webRoot/controller/user/login login.
Noframe compatibility mode:: $webRoot? Controller/user/login maps the public method of the class User to the $webroot/controller/user.class.php file login.
# Why Noframe
--------------------------------------
Noframe does not rely on any expansion module and server environment configuration. Low coupling
Noframe Replace the frame with a specification. Low performance overhead
Noframe only need to copy entrance.php to your app's root directory when using it. Low cost of Use
Noframe can quickly develop a set of standardized, concise application systems.
# Use Specification
------------------------------------------
Noframe based on PSR-0 specification
The Noframe class is in the same folder name as the first letter capitalized
Noframe The returned data is a JSON-formatted string
The data returned by Noframe contains the success information of the processing result
--------------------------------------------
Noframe is now hosted on GitHub.
Managed Address: Https://github.com/yii153/noFrame
noframe--Lightweight PHP Development Framework