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.

<?php
// Define class "Person"
class Person {
    // Class attributes
    private $name;
    private $age;

    // Constructor to initialize object with initial values
    public function __construct($name, $age) {
        $this->name = $name;
        $this->age = $age;
    }

    // Method to get the person's name
    public function getName() {
        return $this->name;
    }

    // Method to get the person's age
    public function getAge() {
        return $this->age;
    }

    // Method to display person's information
    public function displayInfo() {
        echo "Name: " . $this->getName() . "<br>";
        echo "Age: " . $this->getAge() . "<br>";
    }
}

// Create object from class "Person"
$person1 = new Person("John Doe", 25);

// Call method to display object's information
$person1->displayInfo();
?>

Detailed explanation:

  1. Defining the Person class:

    • A class is a blueprint for creating objects. In this example, the Person class contains attributes like name and age to store information about a person.
  2. Constructor __construct():

    • A constructor is a special method called when an object of the class is created. It helps initialize the object's attributes with default values.
  3. Methods getName(), getAge(), and displayInfo():

    • getName() and getAge() are methods used to retrieve the values of the name and age attributes from an object.
    • displayInfo() is a method used to display the person's information on the webpage, using the output from getName() and getAge().
  4. Creating an object:

    • The object person1 is created from the Person class with the name "John Doe" and age 25. The displayInfo() method is then called to display the object's information.

PHP Version:

This code is compatible with PHP 5.0 and above.



Related

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.
Add watermark to image using PHP

A guide on how to add a watermark to an image using PHP with the GD library. This PHP script allows adding text or image watermark on top of the original image.
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.
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.
Update data in MySQL using PHP

A guide on how to update data in MySQL using PHP. This code uses the UPDATE SQL statement to change information in a MySQL database efficiently.
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.
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.
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.
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.
JSON Web Token (JWT) Authentication with PHP

A guide on using JSON Web Token (JWT) for authentication in PHP. Using JWT ensures secure transmission of information between client and server and is easy to implement in web applications.

main.add_cart_success