2

假设有两个项目“project_a”和“project_b”。我正在通过 set_include_path 在 project_a 的 index.php 中动态设置包含路径,以便能够使用文件夹/Users/Me/develop/project_b/controller中的 project_b 文件。

project_a 的 index.php 内容为:

set_include_path(get_include_path().':/Users/Me/develop/project_b');
require 'vendor/autoload.php';

$c = new projectbns\Controller\MyController();

composer.json 内容为:

{
    "require": {},
    "autoload": {
        "psr-4": {
            "projectbns\\Controller\\": "controller/"
        }
    },
    "config": {
        "use-include-path": true
    }
}

最后在 project_b 中 MyController.php 的内容是:

namespace projectbns\Controller;

class MyController {
    public function __construct() {
        die(var_dump('Hi from controller!'));
    }
}

但是当我调用 project_a 的 index.php 时,我只得到这个错误:

Fatal error: Uncaught Error: Class 'projectbns\Controller\MyController' not found in /Users/Me/develop/project_a/index.php:8 Stack trace: #0 {main} thrown in /Users/David/Me/develop/project_a/index.php on line 8

我错过了什么?

在此先感谢大卫。

PS:是的,出于特定原因,我必须动态设置包含路径。

4

3 回答 3

2

这是简单的工作演示。希望你喜欢我的东西。

你的目录结构应该是:

    - Main
        - index.php
        - composer.json
        - vendor
        - Libs
            - botstrap.php

index.php :初始第一个登陆文件(在根目录中。)

<?php
    ini_set("display_errors", 1);
    error_reporting(E_ALL);

    // Include autoloading file
    require "vendor/autoload.php";

    // User target class file namespace
    use Library\Libs\Bootstrap as init;

    // Create object of the bootstrap file.
    $bootstrap = new init();

    /*
     * Object of the bootstrap file will call constructor by default.
     * if you want to call method then call with bellow code
     */

    $bootstrap->someFunc();

?>

引导程序.php

<?php
    namespace Library\Libs;

    class Bootstrap {
        function __construct() {
            echo "Class Construcctor called..<br/>";
        }
        public function someFunc()
        {
            echo "Function called..:)";
        }
    }
?>

作曲家.json

    {
    "name": "root/main",
    "autoload": {
        "psr-4": {
            "Library\\Libs\\": "./Libs",
        }
    }
}

毕竟不要忘记转储自动加载。希望这对您有所帮助。

问候!

于 2017-06-12T09:00:35.580 回答
1

好的,所以尝试将 psr-4 更改为 psr-0 然后

composer dumpautoload -o 
于 2017-06-12T08:13:27.490 回答
1

我现在通过在项目 b 中设置“自己的作曲家”解决了我的问题(project_b 得到自己的composer.json,然后在终端:composer install)。这具有 composer 将在项目 b 中生成一个vendor/autoload.php文件的效果,该文件可以通过绝对路径在项目 a 中需要:

require_once '/Users/Me/develop/project_b/vendor/autoload.php';

这种方式不需要修改包含路径,并且项目 b 可以自己处理自动加载其类(这对我来说似乎更加模块化)。

于 2017-06-12T13:32:57.403 回答