Open In App

PHP | Interface

Last Updated : 03 Nov, 2018
Improve
Improve
Like Article
Like
Save
Share
Report

An Interface allows the users to create programs, specifying the public methods that a class must implement, without involving the complexities and details of how the particular methods are implemented. It is generally referred to as the next level of abstraction. It resembles the abstract methods, resembling the abstract classes. An Interface is defined just like a class is defined but with the class keyword replaced by the interface keyword and just the function prototypes. The interface contains no data variables. The interface is helpful in a way that it ensures to maintain a sort of metadata for all the methods a programmer wishes to work on.

Creating an Interface

Following is an example of how to define an interface using the interface keyword.




<?php 
  
interface MyInterfaceName {
   public  function methodA();
   public  function methodB();
  
?>


Few characteristics of an Interface are:

  • An interface consists of methods that have no implementations, which means the interface methods are abstract methods.
  • All the methods in interfaces must have public visibility scope.
  • Interfaces are different from classes as the class can inherit from one class only whereas the class can implement one or more interfaces.

To implement an interface, use the implements operator as follows:




<?php
  
class MyClassName implements MyInterfaceName{
   public  function methodA() { 
  
     // method A implementation
   
   public  function methodB(){ 
  
     // method B implementation
   
}
  
?>


Concrete Class: The class which implements an interface is called the Concrete Class. It must implement all the methods defined in an interface. Interfaces of the same name can’t be implemented because of ambiguity error. Just like any class, an interface can be extended using the extends operator as follows:




<?php 
  
interface MyInterfaceName1{
  
    public  function methodA();
   
}
  
interface MyInterfaceName2 extends MyInterfaceName1{
  
    public  function methodB();
}
  
?>


Example:




<?php 
  
interface MyInterfaceName{
  
    public function method1();
    public function method2();
  
}
  
class MyClassName implements MyInterfaceName{
  
    public function method1(){
        echo "Method1 Called" . "\n";
    }
  
    public function method2(){
        echo "Method2 Called". "\n";
    }
  
$obj = new MyClassName;
$obj->method1();
$obj->method2();
  
?>


Output:

Method1 Called
Method2 Called

Advantages of PHP Interface

  • An interface allows unrelated classes to implement the same set of methods, regardless of their positions in the class inheritance hierarchy.
  • An interface can model multiple inheritances because a class can implement more than one interface whereas it can extend only one class.
  • The implementation of an inheritance will save the caller from full implementation of object methods and focus on just he objects interface, therefore, the caller interface remains unaffected.


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads