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

How is a constant defined in a PHP script?

1091


Which parts of php are case sensitive?

973


Steps for the payment gateway processing?

1074


What is the differences between $a != $B and $a !== $B?

1143


Write a statement to show the joining of multiple comparisons in php?

1070


Explain me what is the use of 'print' in php?

1001


How can i execute PHP File using Command Line?

1045


How to delete file in php?

1038


How to get the number of characters in a string?

1079


Where are sessions stored php?

1065


Tell me what does the scope of variables means?

997


What is the use of final class in php?

976


What is the difference between explode and split?

1183


What is the difference between require_once and require in php?

1152


Explain the difference between $message and $$message?

1063