meioa/db

Simple database connection tool

2.0.2 2025-06-19 06:10 UTC

This package is not auto-updated.

Last update: 2025-06-19 08:33:18 UTC


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',           // 数据库编码
            ]
$db = new Db($dbConfig);
$sql = '';
$dbRes = $db->exec($sql);