what is interface in php? how it is use?
Answer Posted / nur nahid hasan
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 ? | 19 Yes | 6 No |
Post New Answer View All Answers
What is session in c#?
Xplain is it possible to use com component in php?
How does php session work?
How to take a substring from a given string?
What are the final class and final method?
What is php full form?
Tell me what sized websites have you worked on in the past?
Do you know how to get the ip address of the client?
Tell me what is the use of isset() in php?
What is ci framework in php?
Which function would you use to insert a record into a database in php?
Why triggers are used in mysql?
What is properties of class?
Differentiate between php5 and php7?
What is default session time in php?