Files
fast_install/api/db.php
T

22 lines
463 B
PHP

<?php
require_once __DIR__ . '/config.php';
require_once __DIR__ . '/Medoo.php';
use Medoo\Medoo;
function getDb() {
static $db = null;
if ($db === null) {
$db = new Medoo([
'type' => DB_TYPE,
'host' => DB_HOST,
'port' => DB_PORT,
'database' => DB_NAME,
'username' => DB_USER,
'password' => DB_PASS,
'charset' => DB_CHARSET,
]);
}
return $db;
}