require_once($_SERVER["DOCUMENT_ROOT"] . 'config.php');
class stuff{
public $dhb;
public function __construct(){
$dbh = new PDO('mysql:host=' . $database['host'] . ';dbname=' . $database['dbname'] . '', $database['user'], $database['password']);
}
}
在上面的示例中,我收到此错误:
注意:未定义变量:第 11 行 C:\wamp\www\career\inc\controller.php 中的数据库
如何访问我拥有的数组config.php
?它包含$database
数组。