Yaf 在Bootstrap中注册变量,然后在其他地方进行使用!
作者:互联网
引擎位置注册
/**
* 注册配置到全局环境。
* -- 1、率先执行,以便后续的程序都能读取到配置文件。
*/
public function _initConfig()
{
$config = \Yaf_Application::app()->getConfig();
\Yaf_Registry::set("config", $config);
}
在其他地方使用
$root_path = \Yaf_Registry::get('config')->app->root_path;
标签:root,app,Bootstrap,Registry,注册,path,Yaf,config 来源: https://www.cnblogs.com/jiqing9006/p/12111229.html