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

Introduction to PHP and how to build your first web application in less than 10 minutes
Mar 21, 2023 programming

Introduction to PHP and how to build your first web application in less than 10 minutes

PHP is an open source scripting language for backend development. and we are going to build our very first PHP application together. ...

7 Min Read Read More
PHP Date and Time
Mar 21, 2023 programming

PHP Date and Time

Today we are going to learn about date and time in PHP. knowing how to work with dates and times and how to work with different formats of dates is very important. ...

14 Min Read Read More
PHP Inheritance
Mar 22, 2023 programming

PHP Inheritance

Today we are going to talk about Inheritance in PHP. Inheritance is another important topic related to object oriented programming in PHP. It can help you extend the functionalities of a class. ...

8 Min Read Read More
PHP Namespace
Mar 23, 2023 programming

PHP Namespace

Today we are going to talk about namespaces in PHP. Namespace is like putting the classes in a group. it helps you organize your code much better. It's a must-know topic for a PHP programmer. ...

7 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 ...