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 the function mysql_pconnect() useful for?

884


How do I start a php session?

935


Tell me how to create a session? How to set a value in session? How to remove data from a session?

928


What is the super method?

955


What’s the special meaning of __sleep and __wakeup?

940


What is the difference between php and core php?

885


What is self in php?

1076


What is the use of ajax in php?

930


Which MySQL function would you use to select a database?

1013


What type of errors can be occurred in php?

931


Explain the installation of PHP on UNIX systems?

1031


What are the encryption functions in php?

1065


Define about declare construct?

984


> symbol is used to redirect the output of a command. State Whether True or False?

1101


What are the three classes of errors that can occur in php?

976