请教个问题:
yaf. use_namespace=1的情况下,controller怎么使用namespace?
比如:Index.php的内容
use Yaf\Controller_Abstract;
use Yaf\Dispatcher;
class IndexController extends Controller_Abstract
{
public function indexAction()
{
Dispatcher::getInstance()->disableView(0);
echo 'Great,It Works!';
}
}
没法加namespace了,文件名是Index.php
路过的怎么处理的,说说
php.ini 开启
定义加载器 可以在公用function中
然后在 Bootstrap 文件中用 spl_autoload_register 自定义加载器
不过开启 use_spl_autoload 会影响效率
use_spl_autoload