从GET查询到WebSockets

时间:2014-10-28 18:22:54

标签: php websocket

我的程序使用GET请求接收数据数组。我需要重写它以使用websockets。

if($_SERVER['REQUEST_METHOD'] === 'GET'){
    header('Content-type: text/html; charset=utf-8');

    if(!array_key_exists('method', $_GET) || !array_key_exists('login', $_GET)) die("");

    $params = strip($_GET);

    switch($params['method']){

        case 'method1': {
            // ...
        }
        case 'method2': {
            // ...
        }
        case 'method3': {
            // ...
        }
    }
}

我正在使用PHP-WebSockets(https://github.com/ghedipunk/PHP-WebSockets

请帮帮我。

0 个答案:

没有答案