1 Star 0 Fork 17

fanpq/robotphp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
MysqlChat.php 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
黄超h 提交于 2023-06-06 14:44 . 提交代码
<?php
class MysqlChat
{
private $mysql;
private static $_instance = '';
public function __construct()
{
// $this->mysql = new Swoole\Coroutine\MySQL();
// go(function () {
// $this->mysql->connect([
// "host" => '172.17.0.4',
// "port" => 3306,
// 'user' => 'root',
// 'password' => '123456',
// 'database' => 'es',
// ]);
// });
$this->mysql = new Swoole\Coroutine\MySQL();
go(function () {
$this->mysql->connect([
"host" => '127.0.0.1',
"port" => 3306,
'user' => '120_79_169_121',
'password' => 'YWR7jpnpHbezXfDY',
'database' => '120_79_169_121',
]);
});
}
public static function getInstance()
{
if (!self::$_instance instanceof MysqlChat) {
self::$_instance = new MysqlChat();
}
return self::$_instance;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/fanpq/robotphp.git
git@gitee.com:fanpq/robotphp.git
fanpq
robotphp
robotphp
master

搜索帮助