作者 潘浩文
1 个管道 的构建 通过 耗费 0 秒

websocket协议测试

... ... @@ -7,19 +7,19 @@ return [
// 数据库类型
'type' => 'mysql',
// 服务器地址
'hostname' => '127.0.0.1',
'hostname' => 'rm-m5eblhc9o3515i25n.mysql.rds.aliyuncs.com',
// 数据库名
'database' => 'ModelTest',
'database' => 'scoreshop',
// 用户名
'username' => 'root',
'username' => 'db136s1ehvo1yn73',
// 密码
'password' => '',
'password' => 'cxz307311SJK',
// 端口
'hostport' => '3306',
// 数据库编码默认采用utf8
'charset' => 'utf8mb4',
// 数据库表前缀
'prefix' => 'mt_',
'prefix' => 'sc_',
"authcode" => 'V0h0Rmd0Y5lmguZgjH',
'auto_timestamp' => true,
'datetime_format' => 'Y-m-d H:i:s',
... ...
... ... @@ -132,6 +132,9 @@ $tcp_worker->onMessage = function($connection, $data)
{
// 向客户端发送hello $data
$connection->send('hello ' . $data);
if ($data=='tom') {
Db::name('user')->where('id',1)->update(['sex'=>1]);
}
};
... ...