Heim >Backend-Entwicklung >PHP-Tutorial >socket.IO 的 PHP 版本:PHPSocket.IO

socket.IO 的 PHP 版本:PHPSocket.IO

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-23 13:24:382123Durchsuche

PHPSocket.IO 是 socket.IO 的php版本,基于workerman开发。用于替代socket.IO服务端,方便用PHP开发socket.IO即时通讯应用。 

实例代码:

use PHPSocketIO\SocketIO; // listen port 2021 for socket.io client$io = new SocketIO(2021);$io->on('connection', function($socket)use($io){  $socket->on('chat message', function($msg)use($io){    $io->emit('chat message', $msg);  });});

项目主页:http://www.open-open.com/lib/view/home/1444828274810

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn