Free cookie consent management tool by TermsFeed Generator PHP Abstract Class | Amir Kamizi
AMIR KAMIZI
Home Blog Courses Books Newsletter Store Membership Buy me a coffee
PHP Abstract Class

PHP Abstract Class

Last Updated on Mar 22, 2023

Introcution

In order to understand abstract classes you should know 4 topics:

  1. class
  2. inheritance
  3. interface
  4. access modifiers

We have already talked about those topics in other posts so by know you should know them.

What is an abstract class

Well simply put, an abstract class is like an interface so it has methods that are only defined and not implemented but at the same time it’s like a class and can have methods that are implemented.

It’s like having the best of both worlds

Let’s see an example

<?php
abstract class Human
{
    private $name;
    
    public function __construct(string $name)
    {
        $this->name = $name;
    }
    
    public function sayHello()
    {
        echo 'Hello my name is '.$this->name;
    }
    
    abstract protected function nationality();
}

abstract class vs class

As you can see the difference with a class is that it has the word abstract in the name. Abstract class. And for the methods that are going to be defined only and not implemented we should use the same keyword. Abstract public/protected function.

Let’s see an example of a class that extends this abstract class and implement it.

class Pratham extends Human {
    
    public function nationality()
    {
        echo "I am from India";
    }
}

$pratham = new Pratham('Pratham');
$pratham->sayHello();
// Hello my name is Pratham
$pratham->nationality();
// I am from India

access modifiers in an abstract class

Do you see how the abstract class is protected but when we implement it, we made it public?

If the abstract method is protected the implemented method can be protected or public but if the abstract method is public then the implemented method must be public as well.

abstract class vs interface

Let’s compare our abstract class with an interface.

There are 4 main differences.

  1. abstract classes can have properties and as you have seen we had name in the abstract class. We can’t have properties in an interface.
  2. As you have seen, we had an abstract method that was protected. In an interface all the methods must be public.
  3. you cannot implement a method inside an interface but as you can see we have implemented the sayHello method in our abstract class.
  4. if your class wants to implement the methods of an interface you should use implements but for abstract class we use extends

let's take a look at it again

<?php
abstract class Human
{
    private $name;
    
    public function __construct(string $name)
    {
        $this->name = $name;
    }
    
    public function sayHello()
    {
        echo 'Hello my name is '.$this->name;
    }
    
    abstract protected function nationality();
}

class Pratham extends Human {
    
    public function nationality()
    {
        echo "I am from India";
    }
}

$pratham = new Pratham('Pratham');
$pratham->sayHello();
// Hello my name is Pratham
$pratham->nationality();
// I am from India

https://youtu.be/mHcalz7oU84

Conclusion

Now you know about abstract classes in PHP.

I recommend you to open a PHP files and try writing an abstract class. add abstract methods to it and try to extend it and implement its abstract methods.

If you have any suggestions, questions, or opinions, please contact me. I’m looking forward to hearing from you!

Key takeaways

  • define an abstract class
  • abstract class vs class
  • abstract class vs interface
  • abstract methods
  • access modifiers in an abstract class

Category: programming

Tags: #php #oop

Join the Newsletter

Subscribe to get my latest content by email.

I won't send you spam. Unsubscribe at any time.

Related Posts

PHP Variables
Mar 21, 2023 programming

PHP Variables

Today we are going to learn about variables in PHP. Variables are very important and powerful in any programming language. So if you are learning PHP it's very important to know about variables. ...

5 Min Read Read More
PHP Conditionals
Mar 21, 2023 programming

PHP Conditionals

Today we are going to learn about conditionals in PHP. Conditionals are very useful in any programming language. So important that we can argue that the foundation for all the technologies around us are conditions. ...

7 Min Read Read More
PHP Array Replace
Feb 14, 2023 programming

PHP Array Replace

Today we are going to talk about array replace function in PHP. Array replace is another array function that is very simple yet a very powerful function. ...

8 Min Read Read More
AngularJS Beginner to Advance 2025: The Complete Guide for Modern Web Developers
Jul 18, 2025 programming

AngularJS Beginner to Advance 2025: The Complete Guide for Modern Web Developers

In today’s web development landscape, AngularJS may no longer dominate headlines, but it still powers countless legacy applications. Many organizations—especially in finance, healthcare, and enterprise software—rely on AngularJS systems that require ongoing maintenance and enhancements. ...

43 Min Read Read More

Recommended Courses

Introduction to Machine Learning in PHP

Introduction to Machine Learning in PHP

Learn to Build Different Machine Learning Models Easily ...

PHP Tutorial Beginner to Advanced

PHP Tutorial Beginner to Advanced

Learn everything you need to start a successful career as a PHP developer ...