easyswoole连接mysql

  • 安装mysqli
composer require easyswoole/mysqli
  • 在根目录dev.php添加如下代码:
'MYSQL' => [
        //数据库配置
        'host'                 => '0.0.0.0',//数据库连接ip
        'user'                 => 'root',//数据库用户名
        'password'             => 'asdf123456A*',//数据库密码
        'database'             => 'imooc_video',//数据库
        'port'                 => 3306,//端口
        'timeout'              => '30',//超时时间
        'connect_timeout'      => '5',//连接超时时间
        'charset'              => 'utf8',//字符编码
        'strict_type'          => false, //开启严格模式,返回的字段将自动转为数字类型
        'fetch_mode'           => false,//开启fetch模式, 可与pdo一样使用fetch/fetchAll逐行或获取全部结果集(4.0版本以上)
        'alias'                => '',//子查询别名
        'isSubQuery'           => false,//是否为子查询
        'max_reconnect_times ' => '3',//最大重连次数
    ],
  • 在App/HttpController/Api/Index.php新建如下代码:


namespace App\HttpController\Api;
use App\HttpController\Api\Base;
use EasySwoole\Mysqli\Config;
use EasySwoole\Mysqli\Mysqli;
use EasySwoole\EasySwoole\Config as Configs;


/**
 * Class Index
 * @package App\HttpController
 */
class Index extends Base
{
    function getVideo(){
        $config=Configs::getInstance()->getConf('MYSQL');
        $conf = new Config($config);
        $db = new Mysqli($conf);
        $data = $db->get('video');//获取一个表的数据
        return $this->writeJson(200,  $data,'ok');
    }
}

你可能感兴趣的:(php)