在客户端:
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) {
}
}
我看不到关于我的 URLid
和tid
. 更新:我试图$request
在 Http/Route 上转储变量中的所有内容以检查,我可以看到 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) {
...
}
}
}
消息在客户端和服务器之间正确传输,但查询字符串。任何帮助表示赞赏。