Is there any Javascript TCP Soket Library for PHP

2020-02-01 19:28发布

I found SignalR library for ASP.NET developers that simplifies the process of adding real-time web functionality to applications.

Is there any similar library for php that also do the same job like signalR??

标签: php signalr
3条回答
Viruses.
2楼-- · 2020-02-01 19:31

you can use Ratchet follow below link

php library

查看更多
▲ chillily
3楼-- · 2020-02-01 19:44

Yes please find information at:

(1) http://php.net/manual/en/sockets.examples.php

(2) As well as can Creating Real Time Applications with PHP and WebSockets

PHPWebSockets is a WebSockets server written in PHP (https://github.com/ghedipunk/PHP-WebSockets).

The WebSocket server itself is a class that can be extended to write the rest of the application. The WebSockets.php is the base class and we need to extend that class to write our own simple WebSocket server application. The WebSockets.php base class does the socket management and WebSocket handshake.

查看更多
Bombasti
4楼-- · 2020-02-01 19:46

Yes their is some other also.

If you don't want to code so much and your requirement is just push notification then do some research on ONESIGNAL.

Follow these links:

OneSignal Documentation

OneSignal API Reference

  • Make Free Account.
  • Register your Application with ONESIGNAL
  • Consume ONESIGNAL api in your project with their few lines generic code.
查看更多
登录 后发表回答