(No version information available, might only be in Git)
Bootstrap是用來在Application運(yùn)行(run)之前做一些初始化工作的機(jī)制.
你可以通過繼承Yaf_Bootstrap_Abstract 來定義自己的Bootstrap類.
在Bootstrap類中所有以"_init"開頭的公有的方法, 都會(huì)被按照定義順序依次在Yaf_Application::bootstrap() 被調(diào)用的時(shí)刻調(diào)用.
示例 #1 Bootstrap example
<?php
/* bootstrap class should be defined under ./application/Bootstrap.php */
class Bootstrap extends Yaf_Bootstrap_Abstract {
public function _initConfig(Yaf_Dispatcher $dispatcher) {
var_dump(__METHOD__);
}
public function _initPlugin(Yaf_Dispatcher $dispatcher) {
var_dump(__METHOD__);
}
}
$config = array(
"application" => array(
"directory" => dirname(__FILE__) . "/application/",
),
);
$app = new Yaf_Application($config);
$app->bootstrap();
?>
以上例程的輸出類似于:
string(22) "Bootstrap::_initConfig" string(22) "Bootstrap::_initPlugin"