Home Backend Development PHP Tutorial Create real-time web applications using WebSockets in PHP

Create real-time web applications using WebSockets in PHP

Jun 19, 2023 pm 03:59 PM
php websocket real time application

Web applications are increasingly popular in the modern Internet, and such applications can provide rich user experience and interaction. However, the traditional HTTP request-response model has certain limitations in real-time performance and efficiency. To solve this problem, WebSocket came into being. WebSocket is a full-duplex communication protocol that enables real-time communication between clients and servers. In this article, we will cover how to create real-time web applications using PHP and WebSocket.

  1. What is WebSocket

WebSocket is a TCP-based full-duplex communication protocol that allows two-way communication on the same TCP connection. The traditional HTTP protocol only allows one-way request-response communication between the client and server. With the WebSocket protocol, after the connection is established, the client and server can send data at any time without waiting for requests. This real-time nature and efficiency make the WebSocket protocol suitable for the development of real-time web applications.

  1. Why use WebSocket

In real-time Web applications, user operations and data updates need to be fed back to the user in a timely manner to provide a better user experience. The traditional HTTP request-response model has a certain delay and cannot meet the needs of real-time communication. In addition, the HTTP request-response model also places a high load on the server. Each request requires a new connection, which increases communication overhead. Therefore, using WebSocket can improve real-time performance and reduce the load on the server.

  1. Use PHP to create a WebSocket server

In PHP, you can easily create a WebSocket server with the help of the Ratchet library. Ratchet is a WebSocket library for PHP. It provides the implementation of the WebSocket protocol and can easily create WebSocket servers and clients, making it convenient for us to develop real-time Web applications. Below are the steps to create a WebSocket server using Ratchet.

Step 1: Install the Ratchet library

You can use the Composer tool to install the Ratchet library. Execute the following command in the terminal:

composer require cboden/ratchet
Copy after login

Step 2: Create the server class

In the server class, we need to override two methods: onOpen and onMessage. The onOpen method is called when the connection is established, and the onMessage method is called when a message is received. The following is a simple server class example:

use RatchetMessageComponentInterface;
use RatchetConnectionInterface;

class Chat implements MessageComponentInterface {
    protected $clients;

    public function __construct() {
        $this->clients = new SplObjectStorage;
    }

    public function onOpen(ConnectionInterface $conn) {
        $this->clients->attach($conn);
        echo "New connection! ({$conn->resourceId})
";
    }

    public function onMessage(ConnectionInterface $from, $msg) {
        foreach ($this->clients as $client) {
            if ($client !== $from) {
                $client->send($msg);
            }
        }
    }

    public function onClose(ConnectionInterface $conn) {
        $this->clients->detach($conn);
        echo "Connection {$conn->resourceId} has disconnected
";
    }

    public function onError(ConnectionInterface $conn, Exception $e) {
        echo "An error has occurred: {$e->getMessage()}
";
        $conn->close();
    }
}
Copy after login

In the above example, we defined a class named Chat, which implements the MessageComponentInterface interface. In the constructor, we initialize a connection list $clients to record all connected clients. In the onOpen method, we add the new connection to the connection list and record the resource id of the connection. In the onMessage method, we loop through all connections and send the received message to all clients except the sender. The onClose and onError methods are used to handle connection closing and error situations.

Step 3: Run the server

Before running the server, we need to start the WebSocket server in the terminal. You can create a startup script in the project directory to start the server. In the startup script, we need to create a WebSocket server object and then pass an instance of the server class to the WebSocket server object. The following is an example of a startup script:

use RatchetServerIoServer;
use RatchetHttpHttpServer;
use RatchetWebSocketWsServer;

require dirname(__DIR__) . '/vendor/autoload.php';

$server = IoServer::factory(
    new HttpServer(
        new WsServer(
            new Chat()
        )
    ),
    8080
);

$server->run();
Copy after login

In the above example, we created a WebSocket server object $server, listening on port 8080. HttpServer and WsServer are two components in the Ratchet library that handle HTTP requests and WebSocket connections. We pass an instance of the Chat class to WsServer to handle related events after the WebSocket connection is established. Finally, start the WebSocket server by calling the $server->run() method.

  1. Developing real-time web applications using WebSocket

After creating a WebSocket server using PHP, we can start developing real-time web applications. The WebSocket server can record all connected clients, and when receiving a message from a client, broadcast the message to all clients. We can use JavaScript to write code on the client side, establish a WebSocket connection, and send and receive data.

The following is a sample code for using jQuery to establish a WebSocket connection:

let websocket = new WebSocket('ws://localhost:8080');

websocket.onmessage = function(event) {
    console.log(event.data);
}

$('form').submit(function(event) {
    event.preventDefault();
    let message = $('input').val();
    $('input').val('');
    websocket.send(message);
});
Copy after login

In the above example, we use the WebSocket constructor to establish a WebSocket connection, and the connection address is ws://localhost :8080. In the onmessage function, we listen to the WebSocket message event and output the message to the console after receiving it. In the form submit event, we get the text in the input box and send it to the WebSocket server.

  1. Conclusion

WebSocket is a protocol that can achieve real-time communication and has the characteristics of high efficiency and real-time performance. In PHP, with the help of the Ratchet library, we can easily create a WebSocket server, making the development of real-time Web applications simpler and more efficient. In the future, the WebSocket protocol will become an important part of real-time web application development.

The above is the detailed content of Create real-time web applications using WebSockets in PHP. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles