Creating a Simple Chat Application Using Socket.IO in PHP

A step-by-step guide to creating a simple chat application using Socket.IO in PHP, helping you understand how to utilize WebSocket for real-time communication.

This article will guide you on building a simple chat application using Socket.IO in PHP. We will utilize Socket.IO to handle real-time communication between the server and clients, creating a smooth and fast chat experience.

PHP Code

Setting Up the Environment: Before you begin, you need to install Node.js and Composer. Then, create a new project folder and use Composer to install the Socket.IO library.

  1. Install Node.js and Socket.IO Library:

    npm init -y
    npm install socket.io
    
  2. Create server.php file:

    <?php
    require 'vendor/autoload.php';
    
    use Ratchet\MessageComponentInterface;
    use Ratchet\ConnectionInterface;
    
    class Chat implements MessageComponentInterface {
        protected $clients;
    
        public function __construct() {
            $this->clients = new \SplObjectStorage;
        }
    
        public function onOpen(ConnectionInterface $conn) {
            $this->clients->attach($conn);
        }
    
        public function onMessage(ConnectionInterface $from, $msg) {
            foreach ($this->clients as $client) {
                if ($from !== $client) {
                    $client->send($msg);
                }
            }
        }
    
        public function onClose(ConnectionInterface $conn) {
            $this->clients->detach($conn);
        }
    
        public function onError(ConnectionInterface $conn, \Exception $e) {
            $conn->close();
        }
    }
    
    $server = IoServer::factory(new HttpServer(new WsServer(new Chat())), 8080);
    $server->run();
    
  3. Create index.html file:
    <!DOCTYPE html>
    <html>
    <head>
        <title>Chat App</title>
        <script src="/socket.io/socket.io.js"></script>
    </head>
    <body>
        <h1>Chat Room</h1>
        <input id="message" autocomplete="off" /><button id="send">Send</button>
        <ul id="messages"></ul>
    
        <script>
            var socket = io.connect('http://localhost:8080');
    
            document.getElementById('send').onclick = function() {
                var message = document.getElementById('message').value;
                socket.emit('chat message', message);
                document.getElementById('message').value = '';
            };
    
            socket.on('chat message', function(msg) {
                var item = document.createElement('li');
                item.textContent = msg;
                document.getElementById('messages').appendChild(item);
            });
        </script>
    </body>
    </html>
    

Detailed explanation:

  1. server.php:

    • require 'vendor/autoload.php';: Load necessary libraries.
    • Chat class: Handles connections and messages.
    • onOpen: Attach the connection to the list.
    • onMessage: Broadcast the message to all connections except the sender.
    • onClose: Remove the connection from the list when closed.
    • onError: Close the connection if there’s an error.
    • IoServer: Initialize the WebSocket server listening on port 8080.
  2. index.html:

    • socket = io.connect(...): Connect to the WebSocket server.
    • onclick: Send a message when the send button is clicked.
    • socket.on: Receive and display messages from the server.

System Requirements:

  • PHP 7.0 or above
  • Node.js
  • Socket.IO library

How to install the libraries needed to run the PHP code above:

  1. Install Composer: https://getcomposer.org/
  2. Create a project folder and run:
    composer require cboden/ratchet
    

Tips:

  • Ensure all necessary software is installed.
  • Experiment by opening multiple tabs in your browser to see how the chat feature works.
Tags: PHP, Socket.IO


Related

Paginate MySQL query results using PHP

A guide on how to paginate MySQL query results using PHP. This PHP code helps split data from MySQL into separate pages for better presentation.
Update data in MySQL with PHP using Prepared Statements to Prevent SQL Injection

Guide on using Prepared Statements in PHP to update data in MySQL securely and efficiently. This PHP code helps prevent SQL Injection vulnerabilities when working with databases.
Convert accented Unicode characters to non-accented in PHP

A guide on how to convert accented Unicode characters in the Vietnamese alphabet to non-accented letters using PHP. This PHP code efficiently handles Vietnamese text processing.
Example of Object-Oriented Programming (OOP) in PHP

A guide with a basic example of Object-Oriented Programming (OOP) in PHP, explaining how to use classes and objects to structure code using OOP principles.
How to remove Punctuation from String in PHP

A guide on how to remove punctuation from a string in PHP. This article explains how to use the `preg_replace` function to strip unwanted punctuation marks from a string.
How to retrieve Data from MySQL Database Using PHP

Learn how to retrieve data from a MySQL database using PHP. Includes detailed code and explanation on how to connect to and query a MySQL database.
How to Write Data to an Excel File Using PHP

A detailed guide on how to write data to an Excel file using PHP with the help of the PHPExcel library or the more modern PhpSpreadsheet library.
Example of Singleton Pattern in PHP

A guide on the Singleton Pattern in PHP with a detailed example, explaining how to implement and use this design pattern in object-oriented programming.
Guide to uploading multiple images in PHP

A detailed guide on how to upload multiple images at once in PHP, including file handling, format checks, and storage on the server.
Example of Strategy Pattern in PHP

A guide on the Strategy Pattern in PHP with a concrete example, explaining how to implement and use this design pattern in object-oriented programming.

main.add_cart_success