引擎位置注册
/**
* 注册配置到全局环境。
* -- 1、率先执行,以便后续的程序都能读取到配置文件。
*/
public function _initConfig()
{
$config = \Yaf_Application::app()->getConfig();
\Yaf_Registry::set("config", $config);
}
在其他地方使用
$root_path = \Yaf_Registry::get('config')->app->root_path;
原文地址:https://www.cnblogs.com/jiqing9006/p/12111229.html
时间: 2024-10-13 11:42:36