我有2个文件index.php和env.php文件。我想使用index.php文件中的env.php文件中的变量来连接数据库。我试过这样做:
env.php:
<?php
$dbSettings = ["192.168.10.10", "homestead", "secret", "mydatabase"];
?>
然后要求index.php文件中的env.file并在index.php文件中使用$ dbSettings变量,如下所示:
<?php
error_reporting( E_ALL );
ini_set( 'display_errors', 1 );
require 'env.php';
class Calculator{
var $mysqli;
public function Calculator(){
$this->mysqli = mysqli_connect( $dbSettings );
}
但是,我收到了错误:
注意:未定义的变量:dbSettings in 第14行/home/vagrant/Projects/MyProject/index.php