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 are the popular content management systems (cms) in php?

887


Tell me will a comparison of an integer 12 and a string "13" work in php?

1036


What is scope of variable in php?

1013


Tell me what are the __construct() and __destruct() methods in a php class?

965


Which function is used to read a single character from a file in PHP.

1013


What are advantages of .htaccess?

918


What are the disadvantages of php?

941


Write syntax to open a file in php?

1010


What are php data types?

943


What is the use of header() function in php?

1001


How long should a session last?

924


How do you compare strings in java?

875


Explain what is the function file_get_contents() usefull for?

918


What is the difference between file_get_contents() and file_put_contents() in php?

1130


What is isset in php?

928