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.

The Strategy pattern allows changing the algorithm or strategy at runtime without modifying the class that is using the strategy. It is useful for creating flexible and maintainable behavior in your code.

<?php
// Strategy Pattern in PHP

// Strategy Interface defining the common method
interface PaymentStrategy {
    public function pay($amount);
}

// Concrete classes for different payment strategies
class CreditCardPayment implements PaymentStrategy {
    public function pay($amount) {
        echo "Paid $amount using Credit Card.\n";
    }
}

class PayPalPayment implements PaymentStrategy {
    public function pay($amount) {
        echo "Paid $amount via PayPal.\n";
    }
}

class CashPayment implements PaymentStrategy {
    public function pay($amount) {
        echo "Paid $amount in cash.\n";
    }
}

// ShoppingCart class uses the strategy for payment
class ShoppingCart {
    private $paymentStrategy;

    // Set the payment strategy
    public function setPaymentStrategy(PaymentStrategy $strategy) {
        $this->paymentStrategy = $strategy;
    }

    // Perform the payment
    public function checkout($amount) {
        $this->paymentStrategy->pay($amount);
    }
}

// Using Strategy Pattern
$cart = new ShoppingCart();

// Pay with credit card
$cart->setPaymentStrategy(new CreditCardPayment());
$cart->checkout(100); // Output: Paid 100 using Credit Card.

// Pay with PayPal
$cart->setPaymentStrategy(new PayPalPayment());
$cart->checkout(200); // Output: Paid 200 via PayPal.

// Pay with cash
$cart->setPaymentStrategy(new CashPayment());
$cart->checkout(300); // Output: Paid 300 in cash.
?>

Detailed explanation:

  1. interface PaymentStrategy: This is the common strategy interface for different payment methods, containing the pay($amount) method.

  2. CreditCardPayment, PayPalPayment, CashPayment: These concrete classes implement the PaymentStrategy interface, each representing a different payment method.

  3. ShoppingCart: This class handles payment, allowing different strategies to be applied through setPaymentStrategy, and executing payments using checkout.

  4. Using Strategy Pattern: The ShoppingCart object can dynamically switch between different payment strategies (CreditCardPayment, PayPalPayment, CashPayment) without altering the core logic in ShoppingCart.

PHP Version:

This code is compatible with PHP 5.0 and above.



Related

How to check for a substring in a string in PHP

A guide on how to use the `strpos` function in PHP to check if a substring exists within a larger string. This is a simple and efficient way to handle string operations in PHP.
How to call a PHP function from a string stored in a variable

A guide on how to call a PHP function from a string stored in a variable using PHP’s dynamic function call feature. This article will show you how to do it with illustrative examples.
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.
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.
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.
Comprehensive guide to concatenating strings in PHP

A detailed guide on all the ways to concatenate strings in PHP, including the concatenation operator, string functions, and other methods.
Update multiple columns in MySQL using PHP

A guide on how to update multiple columns in MySQL using PHP. This PHP code uses the UPDATE statement to change multiple column values in a MySQL database.
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.
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.
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.

main.add_cart_success