what is interface in php? how it is use?
Answer Posted / sanjeev kumar
Interface: Since we all knows that PHP does not support the
multiple inheritance. But don't worry we have an excellent
idea to do the multiple inheritance in php is Interface.
Interface is just like a class using interface keyword and
contains only function declarations(function with no body).
function is defined in the classes where you call it.
Ex:-
interface FirstInterfName{
function Add();
function Sub(10,5);
}
interface SecondInterfName{
function glbfunc1();
function glbfunc2();
}
class ClassName implements FirstInterfName,SecondInterfName
{
fuction Add()
{
$a = 5;
$a = $a + 1;
echo $a;
}
fuction Sub($a,$b)
{
$c = $a -$b;
echo $c;
}
function glbfunc1()
{
Implements here method...............
}
function glbfunc2()
{
Implements here method...............
}
}
| Is This Answer Correct ? | 24 Yes | 7 No |
Post New Answer View All Answers
Is nan in php?
How do you identify independent and dependent variables in research?
hello all, I need some sample placement papers in lion bridge.. can anyone help me?
What are PHP Magic Methods/Functions. List them.
What is the difference between php traits vs interfaces?
What percentage of websites use php?
Why do we use php?
What is php date function?
What is chrome logger?
Explain converting an object?
Tell me are parent constructors called implicitly inside a class constructor?
What is the use of htmlentities in php?
Explain scalar type declarations in php7?
Why do we need abstract class in php?
Tell me how a constant is defined in a php script?