PHP program to demonstrate the default or no-argument constructor

Here, we are going to demonstrate the default or no-argument constructor in PHP.
Submitted by Nidhi, on November 18, 2020 [Last updated : March 13, 2023]

Default or No-Argument Constructor Example

Here, we will create a class that contains the default or no-argument constructor, as we know that constructor of a class called automatically when the object of a class gets created.

PHP code to demonstrate the example of default or no-argument constructor

The source code to demonstrate the default or no-argument constructor is given below. The given program is compiled and executed successfully.

<?php  
    //PHP program to demonstrate the 
    //default or no-argument constructor
    class Sample
    {  
        public function  Sample()
        {  
            echo "Default constructor called<br>";  
        }  
        public function  Method1()
        {  
            echo "Method1 called<br>";  
        }  
    }  
    $S = new Sample();  
    $S->Method1();
?>

Output

Default constructor called
Method1 called

Explanation

In the above program, we created a class Sample that contains a default constructor and a method Method1().

$S = new Sample();

In the above statements, we created the object $S of Sample class then the constructor of Sample class gets called automatically and print "Default constructor called" message on the webpage.

$S->Method1();

In the above statement, we called the Method1() using object $S that will print "Method1 called" message on the webpage.

PHP Class & Object Programs »



Related Programs




Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.