1 Star 0 Fork 0

顾玮华/incolor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.php 868 Bytes
一键复制 编辑 原始数据 按行查看 历史
weihuagu 提交于 2016-03-22 16:37 . add mvc
<?php
/**
如果涉及到模型改动,请使用app/http/routes.php设置路由,而不是src/routes.php!
**/
if (PHP_SAPI == 'cli-server') {
// To help the built-in PHP dev server, check if the request was actually for
// something which should probably be served as a static file
$file = __DIR__ . $_SERVER['REQUEST_URI'];
if (is_file($file)) {
return false;
}
}
require __DIR__ . '/vendor/autoload.php';
session_start();
// Instantiate the app
$settings = require __DIR__ . '/src/settings.php';
$app = new \Slim\App($settings);
// Set up dependencies
require __DIR__ . '/src/dependencies.php';
// Register middleware
require __DIR__ . '/src/middleware.php';
// Register routes
require __DIR__ . '/src/routes.php';
// Register app routes
$approutes=new \app\http\AppRoutes;
$approutes->setRoutes($app);
// Run app
$app->run();
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/weihuagu/incolor.git
git@gitee.com:weihuagu/incolor.git
weihuagu
incolor
incolor
master

搜索帮助