easydowork / yii2-db
修改于yii2框架,独立的数据库连接组件
v1.0
2022-02-24 03:53 UTC
Requires
- php: >=7.0
This package is auto-updated.
Last update: 2025-03-11 06:34:22 UTC
README
修改于yii2框架,独立的数据库连接组件
<?php require(__DIR__ . '/vendor/autoload.php'); use easydowork\db\Connection; use easydowork\db\Query; $connect = new Connection([ 'dsn' => 'mysql:host=127.0.0.1;dbname=test', 'username' => 'test', 'password' => 'test', 'charset' => 'utf8', ]); $data = (new Query())->from('user')->all($connect); print_r($data); $connect->close();