0

xamppのインストールでこれを実行しようとしています。

http://net.tutsplus.com/tutorials/javascript-ajax/start-using-html5-websockets-today/

シェルに到達してphp-qhtdocs \ socket \ server \ startDeamon.phpと入力すると、これが表示されます...

2012-10-17 08:42:11 System: Socket Resource id #7 created.
2012-10-17 08:42:11 System: Socket bound to localhost:8000.
2012-10-17 08:42:11 System: Start listening on Socket.

Strict Standards: Only variables should be passed by reference in C:\xampp\htdoc
s\socket\server\socketWebSocket.class.php on line 35

Strict Standards: Only variables should be passed by reference in C:\xampp\htdoc
s\socket\server\socketWebSocket.class.php on line 35
2012-10-17 08:42:31 WebSocket: Resource id #8 disconnected!

Strict Standards: Only variables should be passed by reference in C:\xampp\htdoc
s\socket\server\socketWebSocket.class.php on line 35

Strict Standards: Only variables should be passed by reference in C:\xampp\htdoc
s\socket\server\socketWebSocket.class.php on line 35

何が問題になる可能性がありますか、コードは古いですか?

これはsocketWebSocket.class.phpの35行目です

$num_sockets = socket_select($changed_sockets,$write=NULL,$exceptions=NULL,NULL);
4

1 に答える 1

1

試す:

$write=NULL;
$exceptions=NULL;
$num_sockets = socket_select($changed_sockets,$write,$exceptions,0);
于 2012-10-17T07:19:33.660 に答える