我找不到有关在 PHP 中设置 wss 连接的任何信息。我连接throw ws没问题。顺便说一句,我正在使用这个非常棒的库来做到这一点:https ://github.com/albeva/php-websocket
但是我的网站使用 https 并且我需要一个 WebSocket 安全连接来避免 Firefox 抱怨连接不安全的事实。
在此先感谢您的帮助。
编辑
这是该库用于启动套接字连接的代码:
$master = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
if (!is_resource($master)) {
$this->throwSocketError();
}
// set options
if (!socket_set_option($master, SOL_SOCKET, SO_REUSEADDR, 1)) {
$this->throwSocketError();
}
// bind
if (!socket_bind($master, $this->host, $this->port)) {
$this->throwSocketError();
}
// listen for connections
if (!socket_listen($master, SOMAXCONN)) {
$this->throwSocketError();
}
我相信我需要更改此代码,但我找不到如何。