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.
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.
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.
Output:
Explanation:
In the above program, we created a class Sample that contains a default constructor and a method Method1().
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.
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