meioa / db
Simple database connection tool
1.0.1
2025-06-16 08:18 UTC
Requires
- php: >=5.4
README
A simple database connection tool in PHP
Installation
Example
use Meioa\Db\Db; $dbConfig = [ 'hostname' => '127.0.0.1', 'database' => 'admin', // 数据库名 'username' => 'root', // 用户名 'password' => '123123' // 密码 'hostport' => '3306', // 端口 'charset' => 'utf8', // 数据库编码 ] $this->_db = new Db($dbConfig); $sql = ''; $dbRes = $this->_db->exec($sql);