Skip to content

a1586256143/core

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

92 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MyClassPHP

MyClassPHP是一个开源、免费的学习框架。官方交流群 438695935

在线文档

传送

更新日志

查看

安装、使用

安装框架

git clone https://github.com/a1586256143/MyClassPHP.git

下拉composer所需组件

composer install

例如:在controllers 建立Index.php,代码如下

namespace controllers;
use system\Base;
class Hello extends Base{
    public function index(){
        return 'Hello MyClassPHP';
    }
}

打开 config/routes.php,追加一条路由

'/hello' => 'Hello@index'

配置完成如下

Route::add(array(
    '/' => 'Index@index' , 
    '/hello' => 'Hello@index'
))

运行

http://域名/hello