spbcodes/mysqlps
最新稳定版本:v1.0.0
Composer 安装命令:
composer require spbcodes/mysqlps
包简介
A MySQLi prepared statements wrapper
README 文档
README
A simple MySQLi prepared statements wrapper for insert, update, select, and delete queries.
Installation
1. Using Composer (recommended)
composer require spbcodes/mysqlps
Then in your PHP code:
<?php require __DIR__ . '/vendor/autoload.php'; use App\Database\mysqlps; $mysqli = new mysqli("localhost", "user", "pass", "dbname"); $db = new mysqlps($mysqli);
2. Manual inclusion
Clone the repository:
git clone https://github.com/spbcodes/MySQL-PHP-PreparedStatements.git
Include the class directly:
<?php require_once __DIR__ . '/MySQL-PHP-PreparedStatements/src/Database/mysqlps.php'; use App\Database\mysqlps; $mysqli = new mysqli("localhost", "user", "pass", "dbname"); $db = new mysqlps($mysqli);
Usage Examples
Insert
$sql = "INSERT INTO users SET #fields# ON DUPLICATE KEY UPDATE #dupes#"; $db->insert($sql, [ 'username' => 'steve', 'email' => 'steve@example.com' ], [ 'last_updated' => date('Y-m-d H:i:s') ]);
Select
$sql = "SELECT * FROM users WHERE id = ||1||"; $result = $db->select($sql); if ($result) { while ($row = $result->fetch_assoc()) { print_r($row); } }
Update / Delete
$db->update("UPDATE users SET #fields# WHERE id = ||1||", ['email'=>'new@example.com']); $db->delete("DELETE FROM users WHERE id = ||1||");
Notes
#fields#and#dupes#are placeholders replaced by the class.insert(),update(),delete()→ returntrueorfalse.select()→ returns amysqli_resultobject (orfalseon failure).- enclose parameters in WHERE statement in || (see examples above).
mysqli_ps.php contains procedural style versions of the functions in the class
AI Assistance
Portions of this library were refactored and optimized with the assistance of an AI language model.
The original functions and overall design were created and directed by Steve Burgess. All copyright and licensing remains with the human author.
License
MIT
统计信息
- 总下载量: 1
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-08-22