gpt4 book ai didi

php - fatal error : Class 'Hours\Minutes\Seconds' not found in my. php 第 10 行

转载 作者:行者123 更新时间:2023-12-04 16:53:17 24 4
gpt4 key购买 nike

我在以下 中收到此错误我的.php

Fatal error: Class 'Hours\Minutes\Seconds' not found in My.php line 10



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

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

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

最佳答案

您需要包含您的类或创建一个自动加载器类

use Hours\Minutes\Seconds;

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

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

关于php - fatal error : Class 'Hours\Minutes\Seconds' not found in my. php 第 10 行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47852946/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com