首页 > 后端开发 > php教程 > yaf. use_namespace=1的情况下,controller怎么使用namespace

yaf. use_namespace=1的情况下,controller怎么使用namespace

WBOY
发布: 2016-06-06 20:26:34
原创
2635 人浏览过

请教个问题:
yaf. use_namespace=1的情况下,controller怎么使用namespace?

比如:Index.php的内容

<code>use Yaf\Controller_Abstract;
use Yaf\Dispatcher;
class IndexController extends Controller_Abstract
{
    public function indexAction()
    {
        Dispatcher::getInstance()->disableView(0);
        echo 'Great,It Works!';
    }
}</code>
登录后复制
登录后复制

没法加namespace了,文件名是Index.php

路过的怎么处理的,说说

回复内容:

请教个问题:
yaf. use_namespace=1的情况下,controller怎么使用namespace?

比如:Index.php的内容

<code>use Yaf\Controller_Abstract;
use Yaf\Dispatcher;
class IndexController extends Controller_Abstract
{
    public function indexAction()
    {
        Dispatcher::getInstance()->disableView(0);
        echo 'Great,It Works!';
    }
}</code>
登录后复制
登录后复制

没法加namespace了,文件名是Index.php

路过的怎么处理的,说说

我也想知道答案。 原本想

<code><?php namespace App\Controllers;

class IndexController extends Yaf\Controller_Abstract
{
    function indexAction()
    {
        // do sth.
    }
}
</code></code>
登录后复制

一直报错。去掉namespace App\Controllers就行。不知道怎么办了。

php.ini 开启

<code>yaf.use_namespace = 1
yaf.use_spl_autoload = 1</code>
登录后复制

定义加载器 可以在公用function中

<code>/** 自动加载器 modules */
function autoload_modules($class){
    $class = str_replace('\\', DIRECTORY_SEPARATOR, $class);
    
    ...

    $file = APPLICATION_PATH . DIRECTORY_SEPARATOR . 'xxxx' . $class . '.php';
    if( file_exists($file) )
        Loader::import($file);
}</code>
登录后复制

然后在 Bootstrap 文件中用 spl_autoload_register 自定义加载器

<code><?php use \Yaf\Bootstrap_Abstract;
use \Yaf\Dispatcher;
use \Yaf\Loader;

class Bootstrap extends Bootstrap_Abstract
{
    /**  自动加载器 */
    function _initAutoload(Yaf\Dispatcher $dispatcher)
    {
        Loader::import('xxxx/function.php');
        spl_autoload_register('autoload_modules');
    }
}</code></code>
登录后复制

不过开启 use_spl_autoload 会影响效率

<code>开启的情况下, Yaf在加载不成功的情况下, 会继续让PHP的自动加载函数加载, 从性能考虑, 除非特殊情况, 否则保持这个选项关闭
</code>
登录后复制

use_spl_autoload

也是一直报错,原来是index里加了 namesapce App\Controllers

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板