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.

The Singleton pattern ensures that only one instance of a class is created during the program’s runtime. It is often used for managing shared resources such as database connections.

<?php
// Singleton Pattern in PHP

class Singleton {
    // Property to store the single instance of the class
    private static $instance = null;

    // Private constructor to prevent instantiation from outside the class
    private function __construct() {
        echo "Instance created.\n";
    }

    // Prevent cloning of the instance
    private function __clone() {}

    // Prevent unserialization of the instance
    private function __wakeup() {}

    // Method to get the single instance of the class
    public static function getInstance() {
        if (self::$instance === null) {
            self::$instance = new Singleton();
        }
        return self::$instance;
    }

    // A simple method to demonstrate functionality
    public function doSomething() {
        echo "Doing something from the Singleton instance.\n";
    }
}

// Retrieve the Singleton instance
$singleton1 = Singleton::getInstance();
$singleton1->doSomething();

// Attempt to get another instance
$singleton2 = Singleton::getInstance();
$singleton2->doSomething();

// Check if both instances are the same object
var_dump($singleton1 === $singleton2);  // Output: true
?>

Detailed explanation:

  1. private static $instance = null;: This property holds the single instance of the Singleton class. Initially, it's set to null.

  2. private function __construct();: The constructor is made private to prevent creating new instances from outside the class.

  3. private function __clone(); and private function __wakeup();: These methods prevent cloning or unserializing the object to avoid multiple instances.

  4. public static function getInstance();: This is the core method of the Singleton pattern. It checks if the instance has been created. If not, it creates and stores the instance. If it exists, it returns the existing instance.

  5. doSomething();: This method demonstrates an action that the Singleton instance can perform.

  6. $singleton1 === $singleton2;: This comparison checks whether both instances are the same object. The result is true, proving that only one instance is created.

PHP Version:

This code is compatible with PHP 5.0 and above.



Related

Check if a given String is Binary String or Not using PHP

A guide on how to check if a given string is a binary string (containing only `0` and `1` characters) in PHP. This article uses basic PHP string functions.
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 use strtok() function in PHP

This article explains how to use the `strtok` function in PHP to split a string into smaller parts based on delimiters. The `strtok` function is a useful tool for string manipulation in PHP projects.
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 convert a Markdown string to HTML using PHP

A guide on how to convert a Markdown string to HTML in PHP using the `Parsedown` library, enabling you to display Markdown content effectively on your website.
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.
Creating Captcha Code with PHP

A guide on how to create a simple Captcha using PHP to protect your website from spam and automated bots.
Difference between `split()` and `explode()` functions for String manipulation in PHP

This article explains the difference between `split()` and `explode()` functions in PHP, both used to split strings but with different approaches and use cases.
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.
How to pass Authentication Header Token when POSTing data to an API using PHP

A detailed guide on how to use cURL in PHP to pass `Authentication Header Token` when POSTing data to an API. This solution ensures secure and authenticated requests to the API.

main.add_cart_success