dqp99585 2013-06-11 09:20
浏览 53
已采纳

spl_autoload在命名空间目录结构之后找不到类

I'm trying to use class autoloading in my project. This is what I wrote:

on main.php:

namespace myproject;

spl_autoload_extensions(".php");
spl_autoload_register();

subspace\myclass::mystaticmethod();

on subspace/myclass.php:

namespace myproject\subspace;

class myclass {

    static function mystaticmethod() {

        ....

    }

}

I get this error:

 PHP Fatal error:  Class 'myproject\\subspace\\myclass' not found

So far I've only found a problem with case sensitive names in the documentation, so I switched to lowercase only but I get the same error. Why?

[EDIT] Using PHP 5.3.3

  • 写回答

1条回答 默认 最新

  • duanreng3439 2013-06-11 13:57
    关注

    I've found the problem: The default include directory would be the full namespace/subspace path.

    I've also found a good solution. From http://www.php.net/manual/en/function.spl-autoload.php#92767:

    <?php
        // Add your class dir to include path
        set_include_path(get_include_path().PATH_SEPARATOR.'..');
    
        // Make autoloader look for commonly used "myclass.php" type filenames
        spl_autoload_extensions('.php');
    
        // Use default autoload implementation
        spl_autoload_register();
    ?>
    

    The default autoload implementation is written in C and is always slightly faster than a PHP one.

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

报告相同问题?

悬赏问题

  • ¥15 拟通过pc下指令到安卓系统,如果追求响应速度,尽可能无延迟,是不是用安卓模拟器会优于实体的安卓手机?如果是,可以快多少毫秒?
  • ¥20 神经网络Sequential name=sequential, built=False
  • ¥16 Qphython 用xlrd读取excel报错
  • ¥15 单片机学习顺序问题!!
  • ¥15 ikuai客户端多拨vpn,重启总是有个别重拨不上
  • ¥20 关于#anlogic#sdram#的问题,如何解决?(关键词-performance)
  • ¥15 相敏解调 matlab
  • ¥15 求lingo代码和思路
  • ¥15 公交车和无人机协同运输
  • ¥15 stm32代码移植没反应