我需要帮助解决下面屏幕截图中的这个错误
我正在使用 PHP 7.2 和第 3 方作曲家 - “作曲家需要 vlucas/phpdotenv”v4.1.4。
我定义了基本路径但是截图有错误
下面是定义我的基本路径的 _env.php 代码
<?php
# define base path
define('BASE_PATH', realpath(__DIR__.'/../../'));
#require the 3rd party tool - composer autoload file
require_once __DIR__.'/../../vendor/autoload.php';
$dotEnv = Dotenv\Dotenv::create(BASE_PATH); -----ERRO IN THIS PARENTHESIS
$dotEnv->load();
?>
我将代码更改为下面的代码,但错误仍然存在
<?php
# define base path
define('BASE_PATH', realpath(__DIR__.'/../../'));
#require the 3rd party tool - composer autoload file
require_once __DIR__.'/../../vendor/autoload.php';
$dotEnv = new Dotenv\Dotenv(BASE_PATH);
$dotEnv->load();
?>
繁星淼淼
泛舟湖上清波郎朗
慕的地6264312