Q:

PHP program to demonstrate the default or no-argument constructor

belongs to collection: PHP Classes & Objects Programs

0

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.

 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

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.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

PHP Classes & Objects Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
PHP program to implement the default or no-argumen... >>
<< PHP program to demonstrate the use of the local an...