bitendian/tbp
Composer 安装命令:
composer require bitendian/tbp
包简介
Light framed PHP library
README 文档
README
TBP is a light framework designed to develop small and medium websites. Focused in component oriented
Database interfaces
SQLite
Connector to SQLite3. Works with prepared statements (mandatory). Support for transactions.
Installation
PHP extension ext-sqlite3 required. Check phpinfo(). By default, tbp-web-server Docker image supports SQLite.
Add to your composer.json, at require section:
"ext-sqlite3": "*"
Configuration
Create a config file, like config/my-sqlite.config
# TBP/SQLite config file.
# ALL PARAMETERS ARE OPTIONAL!
# Database file name (if not defined, will use 'default.db')
filename=resources/test.db
# Access type
# readOnly=yes
# Encryption key (if not defined, no encryption used)
# encryptionKey=
Implementation
Create a Domain extending AbstractSqliteDomain and pass your config file. Add one method for each needed query.
class MyDomain extends AbstractSqliteDomain { public function __construct() { $configReader = new Config(__CONFIG_PATH__); // <-- get a config reader, passing your config folder $config = $configReader->getConfig('my-sqlite'); // <-- read your configuration, passing your config base name $config->filename = // <-- convert your relative path into absolute path __BASE_PATH__ . DIRECTORY_SEPARATOR . $config->filename; parent::__construct($config); $this->open(); // <-- open a db connection and let's rock! } public function addRegister($a, $b) { $sql = "INSERT INTO `MyTableWithAutoInc` (`a`, `b`) VALUES (?, ?)"; $params = array($a, $b); return self::insertWithAutoincrement($this->connection->command($sql, $params)); } public function addAnotherRegister($a, $b) { $sql = "INSERT INTO `MyOtherTable` (`a`, `b`) VALUES (?, ?)"; $params = array($a, $b); return $this->connection->command($sql, $params); } public function getRegisters($b) { $sql = "SELECT * FROM `MyTableWithAutoInc` WHERE `b` <= ?"; $params = array($b); return self::getAll($this->connection->select($sql, $params)); } public function getRegisterById($id) { $sql = "SELECT * FROM `MyTableWithAutoInc` WHERE `MyId` = ?"; $params = array($id); return self::getSingle($this->connection->select($sql, $params)); } }
Usage
sample straight-forward code:
$domain = new MyDomain(); $results = $domain->getRegisters(9391); // get an array
sample code with transactions:
$domain = new MyDomain(); try { $domain->begin(); $lastId = $domain->addRegister(1, 2); echo "first query: last inserted id: $lastId\n"; $lastId = $domain->addRegister(3, 4); echo "second query: last inserted id: $lastId\n"; $domain->commit(); } catch (Exception $e) { $domain->rollback(); echo "ERROR: " . $e->getMessage() . "\n"; }
bitendian/tbp 适用场景与选型建议
bitendian/tbp 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3.84k 次下载、GitHub Stars 达 2, 最近一次更新时间为 2020 年 01 月 20 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「redis」 「mysql」 「postgres」 「sqlserver」 「memcached」 「component」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 bitendian/tbp 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 bitendian/tbp 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 bitendian/tbp 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Dibi is Database Abstraction Library for PHP
Microservice RPC through message queues.
The CodeIgniter Redis package
贝嘟分布式缓存扩展
Bundle for Doctrine enumerations extension for Postgres
Doctrine extension to manage enumerations in PostgreSQL
统计信息
- 总下载量: 3.84k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 17
- 依赖项目数: 5
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-01-20