错误:
致命错误:Swiftlet\App::autoload(): 在 / hermes/waloraweb009/b1166/htdocs/jim/ss test/Swiftlet/App.php 在第 223 行
我是 MVC 的新手,正在尝试 Swiftlet。我正在尝试设置一个 MYSQL 数据库模型。
我已将错误确定为:
class Database extends \Swiftlet\Model {
public $mysqli;
public function __construct(App $app) {
$this->mysqli = new mysqli($this->app->getConfig('dbHost'),
$this->app->getConfig('dbUser'),
$this->app->getConfig('dbPassword'),
$this->app->getConfig('dbName'));
}
}
但我不知道为什么。为什么它会尝试加载mysqli
?