leinc/minichan-mysql 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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_mysql installed

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

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-11-25