Q:

PHP program to implement an interface into multiple classes

belongs to collection: PHP Classes & Objects Programs

0

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.

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 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 Sample1Sample2, 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

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 multiple interfaces in th... >>
<< PHP program to demonstrate the example of a simple...