traits-in-php

Traits in PHP

Hi all, today we will learn about “traits in php”.  As we know, PHP is a single inheritance language i.e. a class defined in PHP can’t inherit more than one class. “Traits” are introduced to solve this problem.

traits-in-php

What are Traits?

“A Trait is similar to a class, but only intended to group functionality in a fine-grained and consistent way.” source php.net

  • Trait is just like a helper class which group reusable code.
  • It helps to follow DRY (Don’t Repeat Yourself).
  • You cannot instantiate a Trait on its own.

Trait vs Interface

When we use Interface then the class which is implementing have to implement all the method but in Trait we can define many function and can use a few. In trait, we can give definitions of a function for ex. a function can perform some task and return value.

Example

Let’s create two files main.class.php and child.class.php where child class inherits main class.

Now we will create a trait file to use in child class, so let’s create a trait file as message.trait.php

Now let’s create an object of child class and call showMessage method and get output as follows

“Hi from parent class Main::showMessage”

Now, to use trait we have to include file in child and use keyword “use” and updated file look as follows.

Create object of child class and call method showMessage and you can see output as follows

“Hi friends you are learning traits in php” which comes from showMessage function from trait.

Now create an object and call method sum with params 1 and 2 and you will get output as follows:

“Method called Child::sum Sum of 1 and 2 is 3” i.e. we can easily override trait function.

That’s it from traits, hope it will be a great add-on in your next project.

 

One thought on “Traits in PHP”

Leave a Reply