0

做一些 php 和根目录如下所示:

web/
    -index.php
src/
    -Controllers/
        -IndexController.php
    -Services/
        -IpService.php

类 IpService 具有命名空间服务我将此命名空间添加到自动加载:

"autoload": {
    "psr-0": {
        "Service\\": "src/"
    }
}

并在 IndexController.php 我这样做:

use Services\IpService;

$app['ip_service'] = function () {
    return new IpService();
};

但是当我打电话时, $app['ip_service']->get()我得到了错误:

Fatal error: Class 'Services\IpService' not found in E:\xampp\htdocs\src\Controllers\IndexController.php on line 18
4

1 回答 1

1

您的作曲家的自动加载字段引用了一个名为“Service”的命名空间,但您的文件夹结构和 IndexController.php 引用了“Services”。

于 2013-09-12T16:58:57.250 回答