Thursday, September 4, 2025
HomeLanguagesPHP | Classes

PHP | Classes

Like C++ and Java, PHP also supports object oriented programming

  1. Classes are the blueprints of objects. One of the big differences between functions and classes is that a class contains both data (variables) and functions that form a package called an: ‘object’.
  2. Class is a programmer-defined data type, which includes local methods and local variables.
  3. Class is a collection of objects. Object has properties and behavior.

Syntax: We define our own class by starting with the keyword ‘class’ followed by the name you want to give your new class.

<?php 
    class person {
 
    }
?>

Note: We enclose a class using curly braces ( { } ) … just like you do with functions.

Given below are the programs to elaborate the use of class in Object Oriented Programming in PHP.
The programs will illustrate the examples given in the article.

Program 1:




<?php
class neveropen
{
    // Constructor
    public function __construct(){
        echo 'The class "' . __CLASS__ . '" was initiated!<br>';
    }
      
}
   
// Create a new object
$obj = new neveropen;
?>


Output:

The class "neveropen" was initiated.

Program 2:




<?php
class neveropen
{
    // Destructor
    public function __destruct(){
        echo 'The class "' . __CLASS__ . '" was destroyed!';
    }
      
}
   
// Create a new object
$obj = new neveropen;
?>


Output:

The class "neveropen" was destroyed.

Reference:
Classes in PHP

RELATED ARTICLES

Most Popular

Dominic
32263 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6626 POSTS0 COMMENTS
Nicole Veronica
11799 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11857 POSTS0 COMMENTS
Shaida Kate Naidoo
6749 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6696 POSTS0 COMMENTS
Umr Jansen
6716 POSTS0 COMMENTS