<?php require dirname(__FILE__) . '/WF/Loader.php'; WF_Loader::addPath(dirname(__FILE__) . '/beta'); WF_Loader::registerAutoload();
/** * * @author Rocky 2012-3-28 */ private static function _Bootstrap() { /** * 核心启动 * * 1. 设置 ini_set * 2. include_path 设置 * 3. 加载 WF_Loader */ /** * 把 app/modules 和 lib 俩个目录仿如 include_path 下 */ set_include_path(implode(PATH_SEPARATOR, array(APP_PATH . "/lib", APP_PATH . "/app", get_include_path()))); /** * 启动 WF_Loader */ WF_Loader::Start(); }