Fatal error: Class 'Dotenv\Dotenv' not found in

前端 未结 7 780
悲哀的现实
悲哀的现实 2021-01-18 17:10

Hello guys I am so confused I dont know what I am doing wrong this told me Fatal error: Class \'Dotenv\\Dotenv\' not found in

But I dont understand

7条回答
  •  春和景丽
    2021-01-18 17:33

    use Dotenv\Dotenv;

    require DIR . '/../vendor/autoload.php';

    $dotenv = new Dotenv(DIR . "/.."); $dotenv->load();

    This is also worked for me. We can Use this.Thank you.

提交回复
热议问题