style(some)

This commit is contained in:
浪子小新
2020-03-28 18:04:34 +08:00
parent 7e625b3dc7
commit 2702810e4b
@@ -50,23 +50,6 @@ $gateway->pingInterval = 10;
// 心跳数据 // 心跳数据
$gateway->pingData = '{"type":"ping"}'; $gateway->pingData = '{"type":"ping"}';
Worker::$daemonize = true; Worker::$daemonize = true;
/*
// 当客户端连接上来时,设置连接的onWebSocketConnect,即在websocket握手时的回调
$gateway->onConnect = function($connection)
{
$connection->onWebSocketConnect = function($connection , $http_header)
{
// 可以在这里判断连接来源是否合法,不合法就关掉连接
// $_SERVER['HTTP_ORIGIN']标识来自哪个站点的页面发起的websocket链接
if($_SERVER['HTTP_ORIGIN'] != 'http://kedou.workerman.net')
{
$connection->close();
}
// onWebSocketConnect 里面$_GET $_SERVER是可用的
// var_dump($_GET, $_SERVER);
};
};
*/
// 如果不是在根目录启动,则运行runAll方法 // 如果不是在根目录启动,则运行runAll方法
if(!defined('GLOBAL_START')) if(!defined('GLOBAL_START'))