...
|
...
|
@@ -4,7 +4,7 @@ use think\Db; |
|
|
// 数据库配置信息设置(全局有效)
|
|
|
|
|
|
require_once __DIR__ . '/simplewind/vendor/workerman/workerman/Autoloader.php';
|
|
|
//require_once __DIR__ . '/simplewind/vendor/autoload.php';
|
|
|
require_once __DIR__ . '/simplewind/vendor/autoload.php';
|
|
|
//$global_uid = 0;
|
|
|
//
|
|
|
//// 当客户端连上来时分配uid,并保存连接,并通知所有客户端
|
...
|
...
|
@@ -135,7 +135,7 @@ $tcp_worker->onMessage = function($connection, $data) |
|
|
{
|
|
|
// 向客户端发送hello $data
|
|
|
$connection->send('hello '. $data);
|
|
|
Db::table('user')->where('id',1)->update(['sex'=>2]);
|
|
|
// Db::table('user')->where('id',1)->update(['sex'=>2]);
|
|
|
// if ($data=='tom') {
|
|
|
// Db::table('user')->where('id',1)->update(['sex'=>1]);
|
|
|
// }
|
...
|
...
|
|