Hey, I have just reduced the price for all products. Let's prepare our programming skills for the post-COVID era. Check it out »
Prototype

Prototype in PHP

Prototype is a creational design pattern that allows cloning objects, even complex ones, without coupling to their specific classes.

All prototype classes should have a common interface that makes it possible to copy objects even if their concrete classes are unknown. Prototype objects can produce full copies since objects of the same class can access each other’s private fields.

Usage of the pattern in PHP

Complexity:

Popularity:

Usage examples: The Prototype pattern is available in PHP out of the box. You can use the clone keyword to create an exact copy of an object. To add cloning support to a class, you need to implement a __clone method.

Identification: The prototype can be easily recognized by a clone or copy methods, etc.

Prototype in Other Languages

Design Patterns: Prototype in Java Design Patterns: Prototype in C# Design Patterns: Prototype in C++ Design Patterns: Prototype in Python Design Patterns: Prototype in Ruby Design Patterns: Prototype in Swift Design Patterns: Prototype in TypeScript Design Patterns: Prototype in Go