13 Star 81 Fork 13

谭家俊 / MysqlPool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Fpm.php 485 Bytes
一键复制 编辑 原始数据 按行查看 历史
tan_jia_jun 提交于 2018-09-11 20:42 . 数据库连接池
<?php
/**
* Fpm方式数据库长连接
* @author tanjiajun
* Date: 2018/9/10
* Time: 12:35
*/
$dbConfig = array(
'host' => 'mysql:host=10.0.2.2:3306;dbname=test',
'port' => 3306,
'user' => 'root',
'password' => 'root',
'database' => 'test',
'charset' => 'utf8',
'timeout' => 2,
);
$db = new PDO($this->dbConfig['host'], $this->dbConfig['user'], $this->dbConfig['password'], PDO::ATTR_PERSISTENT);
$ret = $db->query('select * from guestbook limit 1');
PHP
1
https://gitee.com/tanjiajun/MysqlPool.git
git@gitee.com:tanjiajun/MysqlPool.git
tanjiajun
MysqlPool
MysqlPool
master

搜索帮助