数据库连接错误
public function conn(){
$res =Db::connect();
dump($res);
}
除了上面的正常外,其他的都出现下面的错误,是什么问题,求解答???
Array to string conversion
} // 修正子查询作为表名的问题 if (strpos($tableName, ')')) { return []; } list($guid) = explode(' ', $tableName); $db = $this->getConfig('database'); if (!isset(self::$info[$db . '.' . $guid])) { if (!strpos($guid, '.')) { $schema = $db . '.' . $guid; } else { $schema = $guid; } // 读取缓存 if (is_file(RUNTIME_PATH . 'schema/' . $schema . '.php')) { $info = include RUNTIME_PATH . 'schema/' . $schema . '.php'; } else {