Hacker News new | ask | show | jobs
Does the new PHP 7 will be able to run real time communication?
4 points by lordluisv 3986 days ago
On stack overflow they always says that PHP is not a good programming language for real time applications in this case like real time chats, long polling, comet, etc. with PHP 7 would this change? or I need to start learning node.js?
1 comments

It already does that: Event-driven, non-blocking I/O

http://reactphp.org http://daemon.io http://socketo.me (based on reactphp)

Thank you attozk I didn't know about this.