PHP Composer Autoloader类未找到异常

前端之家收集整理的这篇文章主要介绍了PHP Composer Autoloader类未找到异常前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
标题说明了自己.所以这是我的项目结构:
|src
    |Database
        |Core
            |MysqL.PHP
        |Support
    start.PHP
|vendor
composer.json
index.PHP

MysqL.PHP文件

<?PHP
namespace Database\Core;
//Some methods here

index.PHP和start.PHP文件

//start.PHP file
<?PHP
require __DIR__ . '/../vendor/autoload.PHP';
?>

//index.PHP file
<?PHP
use Database\Core;
require __DIR__ . '/src/start.PHP';

$MysqL = new MysqL(); // Gets exception Class 'MysqL' cannot found etc.
?>

最后我的composer.json自动加载部分:

"autoload": {
    "psr-4": "Database\\": "src/" // Also tried "src/Database" too
}

问题出在哪儿?我真的厌倦了试图应对这种情况.请帮帮我们!谢谢.

初始化类时需要包含命名空间:
$MysqL = new Database\Core\MysqL();

要么

use Database\Core\MysqL;
$MysqL = new MysqL();

Using namespaces: Aliasing/Importing

原文链接:https://www.f2er.com/php/138563.html

猜你在找的PHP相关文章