16 lines
418 B
PHP
16 lines
418 B
PHP
<?php
|
||
|
||
/**
|
||
* Простой класс(Factory) для работы с базами данных
|
||
*/
|
||
class Database
|
||
{
|
||
static function getConnection (array $dsn)
|
||
{
|
||
require_once "core/drivers/database." . strtolower($dsn['phptype']) . ".php";
|
||
$name = "Database_" . strtoupper($dsn['phptype']);
|
||
$database = new $name();
|
||
$database->connect($dsn);
|
||
return $database;
|
||
}
|
||
}
|