我已经搜索过了,我似乎无法找到解决我的问题的方法。
每当我尝试启动一个新对象$con = new Database();
时,我都会收到此错误:
Fatal error: Class 'Database' not found in /customers/c/6/f/rowweb.dk/httpd.www/toolkit/e/includes/php/db/connect.php on line 3
我已经解决了一些问题,它可以很好地连接到我的数据库。我什至试图从与我的数据库类相同的文件中启动对象。
这是我的数据库连接:
$con = new Database();
class Database extends mysqli {
function __construct() {
parent::__construct('host', 'username', 'pass', 'database');
if (mysqli_connect_errno()) {
throw new Exception(mysqli_connect_error(),
mysqli_connect_errno());
}
}
}
谁知道可能是什么问题?