PSR-4 autoloader Fatal error: Class not found

百般思念 提交于 2019-12-05 16:36:53

问题


I have my project structure like so:

src/
   ├─ Model/
      └─ User.php

My User.php file looks like this:

<?php
namespace Bix\Model;

class User {

And my composer.json autoloader is this:

"autoload": {
    "psr-4": {
      "Bix\\": "src/"
    }
  }

Finally my bootstrap.php is this:

use Bix\Model\User;

// PSR-4 Autoloader.
require_once "vendor/autoload.php";

However if I try and create a new User(), I get the error Fatal error: Class 'User' not found in /var/www/public/api/v1/index.php on line 8

Looking at the composer autoload_psr4.php file it looks ok:

// autoload_psr4.php @generated by Composer

$vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname(dirname($vendorDir));

return array(
    'XdgBaseDir\\' => array($vendorDir . '/dnoegel/php-xdg-base-dir/src'),
    'Monolog\\' => array($vendorDir . '/monolog/monolog/src/Monolog'),
    'KeenIO\\' => array($vendorDir . '/keen-io/keen-io/src'),
    'Bix\\' => array($baseDir . '/src'),
); 

Can anybody point out where I am going wrong with the above?


回答1:


First of all, Linux (I'm not sure which PC you use) is case-sensitive. In your autoloading, you defined src/bix, while it is src/Bix.

But more importantly, with PSR-4, the specified namespace prefix is not included in the directory structure (to avoid directories containing just one directory). In your case, if you configure "Bix\\": "src/", a class Bix\Model\User should be located in src/Model/User.php.


EDIT: You're misunderstanding PHP namespaces. In PHP, you're not saying "import everything from Bix\Model into the global namespace for this file" with use Bix\Model;. Instead, it means: "Alias Model in this file to Bix\Model".

So you should either do:

require_once "vendor/autoload.php";

use Bix\Model;

$user = new Model\User();

or:

require_once "vendor/autoload.php";

use Bix\Model\User;

$user = new User();


来源:https://stackoverflow.com/questions/30136773/psr-4-autoloader-fatal-error-class-not-found

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!