This article introduces to you the characteristics and usage of Trait in PHP (with code). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
Since PHP5.4.0, PHP has implemented a method of code reuse called traits.
Traits is a code reuse mechanism prepared for single inheritance languages like PHP. Traits are designed to reduce the constraints of single-inheritance languages and allow developers to freely reuse method sets in independent classes within different hierarchies. The semantics of traits and class composition define a way to reduce complexity and avoid the typical problems associated with traditional multiple inheritance and mixins.
Trait is similar to a class, but is only designed to combine functionality in a fine-grained and consistent way. Trait cannot be instantiated by itself. It adds a combination of horizontal features to traditional inheritance; that is, members of application classes do not need to be inherited.
Trait was added in PHP5.4. It is neither an interface nor a class. Mainly to solve the limitations of single inheritance languages. It is a solution to multiple inheritance in PHP. For example, it would be very troublesome to inherit two Abstract Classes at the same time. Trait is designed to solve this problem. It can be added to one or more existing classes. It declares what the class can do (indicating its interface characteristics), and also includes the specific implementation (indicating its class characteristics)
Simple use
First of all, of course, declare a Trait, PHP5.4 added trait Keyword
1 2 3 4 |
|
At the same time, if you want to use this Trait in Class, then use the use keyword
1 2 3 4 5 6 7 8 |
|
Use multiple Traits
in the same Class You can use multiple Traits
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
|
Abstract Method of Trait
We can declare the abstract method that needs to be implemented in the Trait, so that the Class that uses it must implement it
1 2 3 4 5 6 7 8 9 10 11 |
|
Trait conflict
Using multiple Traits at the same time will inevitably lead to conflicts, which we need to resolve. PHP5.4 brings related keyword syntax from the syntax perspective: insteadof and as. For usage, please refer to
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
|
. The above are some basic uses of Trait. For more details, please refer to the official manual. Here are some points to note:
Trait will override the parent class method inherited by the calling class
Trait cannot be instantiated using new like Class
A single Trait can be composed of multiple Traits
In a single Class , you can use multiple Traits
Trait supports modifiers, such as final, static, abstract
We can use insteadof and as operators to resolve conflicts between Traits
Recommended related articles:
Summary of various ways of operating files in php (with code)
How to implement native zip testing in php (pure code)The above is the detailed content of Introduction to the characteristics and usage of Trait in PHP (with code). For more information, please follow other related articles on the PHP Chinese website!