diff --git a/framework/Framework.php b/framework/Framework.php index 3df3115..b6e69dc 100644 --- a/framework/Framework.php +++ b/framework/Framework.php @@ -22,6 +22,7 @@ class Framework { /** * 执行 + * @param string $callable */ public static function startApp($callable = '') { header('content-type: text/html; charset=utf-8'); diff --git a/public/index.php b/public/index.php index a17a920..655f2d7 100644 --- a/public/index.php +++ b/public/index.php @@ -26,6 +26,12 @@ require '../framework/Framework.php'; // Framework::resourcePath('/resource/'); // 可使用常量RESOURCE取得该值 +// 当前入口文件默认模块,缺省值:home +// Framework::defaultModule('home'); + +// 路由模式,缺省值:1(pathinfo和兼容模式) +// Framework::runType(1); + Framework::appPath('../application/'); // 执行程序