Yaf 框架中开启&使用namespace
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Yaf 框架中开启&使用namespace相关的知识,希望对你有一定的参考价值。
?
1、修改yaf的配置项
?
yaf.use_namespace = 1
yaf.use_spl_autoload = 1
?
2、在你的Bootstrap文件中引入composer的autoload.php就可以。
?
<?php
use \Yaf\Bootstrap_Abstract;
use \Yaf\Dispatcher;
use \Yaf\Loader;
/**
* Class Bootstrap
*/
class Bootstrap extends Bootstrap_Abstract
{
/**
* @param Dispatcher $dispatcher
*/
function _initComposerAutoload(Dispatcher $dispatcher)
{
$autoload = APPLICATION_PATH . ‘/vendor/autoload.php‘;
if (file_exists($autoload)) {
Loader::import($autoload);
}
}
}
参考文献:https://github.com/laruence/yaf/issues/159
以上是关于Yaf 框架中开启&使用namespace的主要内容,如果未能解决你的问题,请参考以下文章