棘轮 - 无法在服务器端获取查询字符串

时间:2014-08-26 10:21:15

标签: php websocket ratchet

在客户端:

var ws = new WebSocket('ws://localhost:8082/chat?id=123&tid=7');

在服务器端

class MyApp implements MessageComponentInterface {
    protected $clients;

    public function __construct() {
        $this->clients = new \SplObjectStorage;
    }

    public function onOpen(ConnectionInterface $conn) {

        var_dump($conn->WebSocket->request->getQuery()); // I tried to access to query string here, but it did not work
        $this->clients->attach($conn);
    }

...
}

这是我从控制台获得的转储结果

class Guzzle\Http\QueryString#85 (5) {
  protected $fieldSeparator =>
  string(1) "&"
  protected $valueSeparator =>
  string(1) "="
  protected $urlEncode =>
  string(8) "RFC 3986"
  protected $aggregator =>
  NULL
  protected $data =>
  array(0) {
  }
}

我无法在网址idtid上看到有关两个查询字符串值的任何线索。 更新:我试图在Http / Route上的变量$request中转储全部来检查,我可以看到getQuery有效,但是我怎么能在onOpen函数上做同样的事情?

 protected $url =>
 class Guzzle\Http\Url#67 (8) {
   protected $scheme =>
   string(4) "http"
   protected $host =>
   string(9) "localhost"
   protected $port =>
   int(8082)
   protected $username =>
   NULL
   protected $password =>
   NULL
   protected $path =>
   string(5) "/chat"
   protected $fragment =>
   NULL
   protected $query =>
   class Guzzle\Http\QueryString#66 (5) {
     protected $fieldSeparator =>
     string(1) "&"
     protected $valueSeparator =>
     string(1) "="
     protected $urlEncode =>
     string(8) "RFC 3986"
     protected $aggregator =>
     NULL
     protected $data =>
     array(3) {
       ...
     }
   }
 }

消息在客户端和服务器之间正确传输,但查询字符串。 任何帮助表示赞赏。

1 个答案:

答案 0 :(得分:0)

我真的不理解src \ Ratchet \ Http中的以下代码,然后我不确定它是否是一个bug。

$parameters = array();

        foreach($route as $key => $value) {
            if ((is_string($key)) && ('_' !== substr($key, 0, 1))) {
                $parameters[$key] = $value;
            }
        }

 $url = Url::factory($request->getPath());
        $url->setQuery($parameters);

但我修改如下:

$parameters = $request->getQuery();

我的上一行将覆盖迭代以将内容设置为$params。至少我可以访问查询字符串