Interfaces in PHP OOP

How do Interfaces work in PHP?

Interfaces let you tell a class what methods it should have.

Interfaces make it easy for different classes to be used in the same way. \”Polymorphism\” means that more than one class can use the same interface.

The interface keyword is used to declare an interface:

Syntax

<?php
interface Interface_Name {
public function testMethod1();
public function testMethod2($one, $two);
public function testMethod3() : string;
}
?>

PHP: Abstract Classes vs. Interfaces

Interfaces are like abstract classes in a way. Interfaces and abstract classes are different in the following ways:

  • Abstract classes can have properties, but interfaces can\’t. All interface methods have to be public, but abstract class methods can be either public or protected.
  • All of the methods in an interface are abstract, so they can\’t be used in code, and you don\’t need to use the abstract keyword.
  • Classes can implement an interface at the same time that they inherit from another class.

Using Interfaces in PHP

A class must use the implements keyword if it wants to use an interface.

When a class implements an interface, it must also implement all of the methods in the interface.

Example

<!DOCTYPE html>
<html>
<body>

<?php
interface Color {
public function showcolorname();
}

class Red implements Color {
public function showcolorname() {
echo \”Red Color\”;
}
}

$color = new Red();
$color->showcolorname();
?>

</body>
</html>

Output

Red Color

Related Article
50+ PHP Interview Questions and Answers 2023

1. Differentiate between static and dynamic websites. Static Website The content cannot be modified after the script is executed The Read more

All We Need to Know About PHP Ecommerce Development

  Many e-commerce sites let you search for products, show them off, and sell them online. The flood of money Read more

PHP Custom Web Development: How It Can Be Used, What Its Pros and Cons Are,

PHP is a scripting language that runs on the server. It uses server resources to process outputs. It is a Read more

PHP Tutorial

PHP Tutorial – Complete Guide for Beginners to Advanced Welcome to the most comprehensive PHP tutorial available online at PHPOnline.in Read more

Introduction of PHP

Introduction to PHP – Learn PHP from Scratch with Practical Examples Welcome to your complete beginner's guide to PHP. Whether Read more

Syntax Overview of PHP

Syntax Overview of PHP (2025 Edition) Welcome to phponline.in, your one-stop platform for mastering PHP. This comprehensive, SEO-rich tutorial on Read more

Environment Setup in PHP

Setting Up PHP Environment (Beginner’s Guide) If you’re planning to learn PHP or start developing websites using PHP, the first Read more

Variable Types in PHP

PHP Variable Types: Complete Beginner's Guide to PHP Data Types Welcome to phponline.in, your trusted source for beginner-to-advanced level PHP Read more

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments