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

Differences between get and post methods?

1041


What is php ci?

994


Do csrf tokens expire?

984


What type of operation is needed when passing values through a form or an url?

994


is that "enumerated array" equal to "numeric array"?

2513


what is constructor

1611


What is the array in php?

1019


Is laravel frontend or backend?

955


iam mca post graduate in 2010 not getting job in JAVA so iam looking for carear in php as market demand is high so it is best option to try for php or not

1860


How do you end php?

980


Define urlencode() and urldecode() used in php?

1190


What is a php certification?

989


How to convert the first character to upper case?

975


Which is better python or php?

1005


What is the function in PHP do not return a timestamp?

1020