致命错误:在my.php第10行中找不到类'Hours \ Minutes \ Seconds'

时间:2017-12-17 07:06:01

标签: php namespaces

我在 My.php

中收到以下错误
  

致命错误:在My.php第10行中找不到班级'小时\分钟\秒'

My.php

use Hours\Minutes\Seconds;
class My {
    ...
    Seconds::myfunc(); //line 10
    ...
}

Seconds.php

namespace Hours\Minutes;
class Seconds {
    function myfunc() {...}
}

编辑:自动加载器类已创建并正常工作。

1 个答案:

答案 0 :(得分:3)

您需要包含课程或创建自动加载器

use Hours\Minutes\Seconds;

require_once 'Seconds.php'; //Add this line and set right file path

class My {
    ...
    Seconds::myfunc(); //line 10
    ...
}