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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Clair Obscur: Expedition 33 - How To Get Perfect Chroma Catalysts
2 weeks 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)

Hot Topics

Java Tutorial
1677
14
PHP Tutorial
1278
29
C# Tutorial
1257
24
PHP and Python: Different Paradigms Explained PHP and Python: Different Paradigms Explained Apr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP's Purpose: Building Dynamic Websites PHP's Purpose: Building Dynamic Websites Apr 15, 2025 am 12:18 AM

PHP is used to build dynamic websites, and its core functions include: 1. Generate dynamic content and generate web pages in real time by connecting with the database; 2. Process user interaction and form submissions, verify inputs and respond to operations; 3. Manage sessions and user authentication to provide a personalized experience; 4. Optimize performance and follow best practices to improve website efficiency and security.

Choosing Between PHP and Python: A Guide Choosing Between PHP and Python: A Guide Apr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP and Python: A Deep Dive into Their History PHP and Python: A Deep Dive into Their History Apr 18, 2025 am 12:25 AM

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Why Use PHP? Advantages and Benefits Explained Why Use PHP? Advantages and Benefits Explained Apr 16, 2025 am 12:16 AM

The core benefits of PHP include ease of learning, strong web development support, rich libraries and frameworks, high performance and scalability, cross-platform compatibility, and cost-effectiveness. 1) Easy to learn and use, suitable for beginners; 2) Good integration with web servers and supports multiple databases; 3) Have powerful frameworks such as Laravel; 4) High performance can be achieved through optimization; 5) Support multiple operating systems; 6) Open source to reduce development costs.

PHP's Impact: Web Development and Beyond PHP's Impact: Web Development and Beyond Apr 18, 2025 am 12:10 AM

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

PHP vs. Python: Use Cases and Applications PHP vs. Python: Use Cases and Applications Apr 17, 2025 am 12:23 AM

PHP is suitable for web development and content management systems, and Python is suitable for data science, machine learning and automation scripts. 1.PHP performs well in building fast and scalable websites and applications and is commonly used in CMS such as WordPress. 2. Python has performed outstandingly in the fields of data science and machine learning, with rich libraries such as NumPy and TensorFlow.

The Continued Use of PHP: Reasons for Its Endurance The Continued Use of PHP: Reasons for Its Endurance Apr 19, 2025 am 12:23 AM

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

See all articles