Download the PHP package wpfly/mysqlhelper without Composer
On this page you can find all versions of the php package wpfly/mysqlhelper. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download wpfly/mysqlhelper
More information about wpfly/mysqlhelper
Files in wpfly/mysqlhelper
Download wpfly/mysqlhelper
More information about wpfly/mysqlhelper
Files in wpfly/mysqlhelper
Vendor wpfly
Package mysqlhelper
Short Description Mysql操作类,PDO链式调用封装
License MIT
Homepage https://www.wpfly.cn/
Package mysqlhelper
Short Description Mysql操作类,PDO链式调用封装
License MIT
Homepage https://www.wpfly.cn/
Please rate this library. Is it a good library?
Informations about the package mysqlhelper
MysqlHelper
介绍
Mysql链式调用PDO封装类,简化基本使用。预处理方式真正防止SQL注入。
安装方法
$ composer require wpfly/mysqlhelper
使用说明
use wpfly\MysqlHelper;
MysqlHelper::get_instance()->connect([
'database' => 'test_helper',
'username' => 'root',
'password' => '',
'prefix' => 'test_',
]);
$db = MysqlHelper::get_instance();
$db->select('table1')->fetch_all();
更多使用示例参看 sample/index.php
参与贡献
- Fork 本仓库
- 在Fork出的仓库提交代码
- 新建 Pull Request
All versions of mysqlhelper with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.4.0
The package wpfly/mysqlhelper contains the following files
Loading the files please wait ....