Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what is interface in php? how it is use?

Answer Posted / jadhav yeshwanth

An Interface is like a template similar to abstract class
with a difference where it uses only abstract methods.

In simple words, an interface is like a class using
interface keyword and contains only function
declarations(function with no body).

An Interface should be implemented in the class and all the
methods or functions should be overwridden in this class.

for eg:

interface InterfaceName{
function fun1();
function fun2(a,b);
}

class ClassName implements InterfaceName{
fuction fun1(){
function implementation.......
}
fuction fun2(a,b){
function implementation.......
}
}

Is This Answer Correct ?    125 Yes 19 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is explode() in php?

1056


How to Pass JSON Data in a URL using CURL in PHP?

1114


Do you know how to delete a file from the system?

1072


What is the purpose of the '.frm' file extension? What do thes file contain?

1010


Is php closing tag necessary?

1042


What library is used for pdf in php?

1111


How will you calculate days between two dates in PHP?

1117


What are php parameters?

1056


Suppose your zend engine supports the mode Then how can you configure your php zend engine to support Mode ?

1044


Explain Constant in Class?

1083


Tell me how can we display information of a variable and readable by human with php?

1094


What is the importance of "action" attribute in a html form?

1050


What is session data?

1017


What is the difference between rest and soap?

1208


What will the ?getdate() function returns in PHP?

1148