1、Web 伺服器配置 Rewrite 2、環境需求 3、目錄結構 + app | - bootstrap.php | - config.php | + Index | + _App | + Controller | - _Controller.php | - Index.php | + Model ...
1、Web 伺服器配置
Rewrite
2、環境需求
3、目錄結構
+ app
| - bootstrap.php
| - config.php
| + Index
| + _App
| + Controller
| - _Controller.php
| - Index.php
| + Model
| + View
| + _Controller
| - _NotFound.php
| - index.mobi..php
| - index.php
| + _helper
| - footer.php
| + _layout
| - default.mobi..php
| - default.php
| + Index
+ web
| - .htaccess
| - index.php
4、入口文件
web/index.php
require_once __DIR__ . '/../app/bootstrap.php'; new \Astrology\Start();
5、引導文件
app/bootstrap.php
define('APP_ROOT', realpath(__DIR__)); define('ANFORA_AUTOLOAD', 0); if (ANFORA_AUTOLOAD) { require APP_ROOT . '/../src/autoload.php'; } else { require APP_ROOT . '/../vendor/autoload.php'; } include_once 'function.php';
6、自動載入類
src/autoload.php
require_once __DIR__ . '/Anfora/Autoload.php'; return Anfora_Autoload::getLoader();