Files
zhamao-framework/src/ZM/MySQL/MySQLWrapper.php

18 lines
256 B
PHP
Raw Normal View History

2021-07-09 01:38:30 +08:00
<?php
namespace ZM\MySQL;
class MySQLWrapper
{
public $connection;
public function __construct() {
$this->connection = MySQLManager::getConnection();
}
public function __destruct() {
$this->connection->close();
}
}