PHP program to implement multiple interfaces in the same class
<?php
//PHP program to implement two interfaces in the same class.
interface Inf1
{
public function fun1();
}
interface Inf2
{
public function fun2();
}
class Sample implements Inf1, Inf2
{
public function fun1()
{
printf("fun1() called<br>");
}
public function fun2()
{
printf("fun2() called<br>");
}
}
$obj = new Sample();
$obj->fun1();
$obj->fun2();
?>
Output
fun1() called
fun2() called
