Here, we will create an interface that contains the declaration of functions and then we will implement the interface into multiple classes with function definitions.
The source code to implement an interface into multiple classes is given below. The given program is compiled and executed successfully on Microsoft Visual Studio.
<?php
//PHP program to implement an interface
//into multiple classes.
interface Inf
{
public function fun();
}
class Sample1 implements Inf
{
public function fun()
{
printf("Sample1::fun() called<br>");
}
}
class Sample2 implements Inf
{
public function fun()
{
printf("Sample2::fun() called<br>");
}
}
class Sample3 implements Inf
{
public function fun()
{
printf("Sample3::fun() called<br>");
}
}
$obj1 = new Sample1();
$obj2 = new Sample2();
$obj3 = new Sample3();
$obj1->fun();
$obj2->fun();
$obj3->fun();
?>
Output:
Sample1::fun() called
Sample2::fun() called
Sample3::fun() called
Explanation:
In the above program, we created an interface Inf that contains the declaration of function fun().
After that, we created three classes Sample1, Sample2, and Sample3. Here, we used the implements keyword to implement an interface into the class. Then we implemented the same interface in all three classes.
At last, we created three objects $obj1, $obj2, and $obj3, and called functions that will print the appropriate message on the webpage.
Program/Source Code:
The source code to implement an interface into multiple classes is given below. The given program is compiled and executed successfully on Microsoft Visual Studio.
Output:
Explanation:
In the above program, we created an interface Inf that contains the declaration of function fun().
After that, we created three classes Sample1, Sample2, and Sample3. Here, we used the implements keyword to implement an interface into the class. Then we implemented the same interface in all three classes.
At last, we created three objects $obj1, $obj2, and $obj3, and called functions that will print the appropriate message on the webpage.
need an explanation for this answer? contact us directly to get an explanation for this answer