leinc/minichan-mysql
Composer 安装命令:
composer require leinc/minichan-mysql
包简介
A minimal mysql framework.
关键字:
README 文档
README
A minimal PHP database MYSQL framework.
Installation
composer require leinc/minichan-mysql
Main Features
- Supports transaction callback operations
- Support for split - sheet callback processing data
- Supports cache query data
- Supports multiple table queries
- Support multiple data bindings
- Data security filtering guarantee
- Introduction, packaging is easier
- Common database operation functions
- WHERE combination conditions vary
Requirement
- PHP 5.5+
- Support the PDO, extension
pdo_mysqlinstalled
Usage
declare(strict_types=1); use MinichanMysql\MiniMysql; require_once 'vendor/autoload.php'; // Config and connect server $config = array( 'host' => '127.0.0.1', 'port' => 3306, 'dbname' => 'dbname', 'username' => 'root', 'password' => 'root', 'charset' => 'utf8', 'prefix' => 'db_pre_', ); $db = new MiniMysql($config); $data = $db->table('admin')->field('id')->getList();
统计信息
- 总下载量: 1
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-11-25