更新入口文件注释

This commit is contained in:
TOP糯米 2019-06-19 15:06:41 +08:00
parent 1a7d3d6d62
commit fa4c6912d6
2 changed files with 7 additions and 0 deletions

View File

@ -22,6 +22,7 @@ class Framework {
/** /**
* 执行 * 执行
* @param string $callable
*/ */
public static function startApp($callable = '') { public static function startApp($callable = '') {
header('content-type: text/html; charset=utf-8'); header('content-type: text/html; charset=utf-8');

View File

@ -26,6 +26,12 @@ require '../framework/Framework.php';
// Framework::resourcePath('/resource/'); // Framework::resourcePath('/resource/');
// 可使用常量RESOURCE取得该值 // 可使用常量RESOURCE取得该值
// 当前入口文件默认模块缺省值home
// Framework::defaultModule('home');
// 路由模式缺省值1pathinfo和兼容模式
// Framework::runType(1);
Framework::appPath('../application/'); Framework::appPath('../application/');
// 执行程序 // 执行程序