- 参考Yaf以纯PHP实现的PHP框架
- PHP 5.4 +
+ public
| - index.php
+ conf
| - application.ini
- application/
+ controllers
- Index.php
+ views
|+ Index
- index.phtml
- library
- models
- modules
- plugins
- Bootstrap.php
<?php
define('DS', DIRECTORY_SEPARATOR);
define('APP_PATH', dirname(dirname(__FILE__)));
require(APP_PATH . '/Ghalf/Application.php');
$app = new \Ghalf\Application(APP_PATH . '/conf/application.ini');
$app->bootstrap()->run();
- 暂时没有