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

websocket协议测试

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