doter1995 2014-10-10 05:36
浏览 230
已采纳

PHP命名空间和自动加载不起作用

I have a file called Query.php.

namespace Test
{
    class Query
    {
        public function __construct()
        {
            printf("Hello, World");
        }
    }
}

in bootstrap.php I try to call it:

spl_autoload_register(function($className) {
    if(file_exists('../folder/'.$className.'.php'))
    {
        require_once '../folder/'.$className.'.php';
    }
});

new \Test\Query();

Result: Fatal error: class Test\Query not found.

Without namespace it works fine. How to fix it?

Thanks in advance.

  • 写回答

1条回答 默认 最新

  • dongtangdao7232 2014-10-10 05:47
    关注

    You have to replace the \ with DIRECTORY_SEPARATOR.

    define('BASE_PATH', realpath(dirname(__FILE__)));
    spl_autoload_register(function($className) {
        if(file_exists(BASE_PATH . '../folder/'. str_replace('\\', DIRECTORY_SEPARATOR , $class). '.php'))
        {
            require_once '../folder/'.$className.'.php';
        }
    });
    

    This is assuming your directory structure is the following

    /folder/boostrap.php

    /folder/Test/Query.php

    See How do I use PHP namespaces with autoload?

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部