You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
455 B
28 lines
455 B
4 years ago
|
<?php
|
||
|
|
||
|
/*
|
||
|
* 获取数据库连接对象
|
||
|
*/
|
||
|
|
||
|
require_once BASE_PATH . '/extension/Medoo/Medoo.php';
|
||
|
require_once BASE_PATH . '/config/config.php';
|
||
|
|
||
|
use Medoo\Medoo;
|
||
|
|
||
|
class connModel {
|
||
|
|
||
|
private $database_medoo;
|
||
|
|
||
|
function __construct() {
|
||
|
$this->database_medoo = new Medoo([
|
||
|
'database_type' => DB_TYPE,
|
||
3 years ago
|
'database' => DB_FILE,
|
||
4 years ago
|
]);
|
||
|
}
|
||
|
|
||
|
function GetConn() {
|
||
|
return $this->database_medoo;
|
||
|
}
|
||
|
|
||
|
}
|