Home > Article > Backend Development > Learn about the prototype pattern in PHP in one article
In the previous article " A brief discussion of the iterator pattern in PHP" we introduced the iterator pattern in PHP. This article will take you to understand the prototype pattern in PHP.
#Prototype mode is actually more vividly called clone mode. Its main behavior is to clone objects, but it also calls the cloned object the original prototype, so this pattern is named. To be honest, judging from how it is used, it feels more appropriate to call it clone mode.
GoF definition: Use prototype instances to specify the types of objects to be created, and create new objects by copying these prototypes
GoF class diagram:
##Code implementation:
abstract class Prototype { public $v = 'clone' . PHP_EOL; public function __construct() { echo 'create' . PHP_EOL; } abstract public function __clone(); }First of all, we define a prototype through simulation. Here we mainly simulate the __clone() method. In fact, this is a magic method that comes with PHP. We don’t need to define it at all. We only need to implement it in the prototype class. When you use the clone keyword externally to clone an object, you will directly enter this magic method. In this magic method we can process properties, especially some unique processing for reference properties. In this example, we only used a value type variable. The problem of reference types cannot be reflected. We will demonstrate the processing of reference type variables in a later example.
class ConcretePrototype1 extends Prototype { public function __clone() { } } class ConcretePrototype2 extends Prototype { public function __clone() { } }The prototype of the specific implementation of the simulation is actually the main implementation of the __clone() method. We will explain this later when we look at specific examples.
class Client { public function operation() { $p1 = new ConcretePrototype1(); $p2 = clone $p1; echo $p1->v; echo $p2->v; } } $c = new Client(); $c->operation();The client uses clone to copy
p2 also has the same $v attribute.
How is our mobile operating system (you can also imagine the operating system of a PC) installed on the device? In fact, they are constantly copying and copying the original system. The example of Microsoft illustrates this problem very well. Microsoft was able to become an empire back then because it kept copying copies of the winodws operating system to CDs and then sold them to thousands of households (of course, there is nothing wrong with China here) . As for the Chinese market, a large number of experts have cracked Windows and copied this file continuously before installing it into our computers. This is true for the operating systems and software of various products such as mobile phones and smart devices. Unlimited copies of one development are the reason for huge profits in the software industry. After all, our system was developed on the basis of the Android native system by many engineers working day and night. Hurry up and copy it to the mobile phones that are about to be shipped! !
完整代码:https://link.juejin.cn/?target=https%3A%2F%2Fgithub.com%2Fzhangyue0503%2Fdesignpatterns-php%2Fblob%2Fmaster%2F08.prototype%2Fsource%2Fprototype.phpExample Let’s talk about mobile phones again. This time we are developing a batch of customized phones based on the needs of different operators, that is, package phones. To be honest, there is no difference between these mobile phones. Most of them have the same configuration, but the carrier systems are different, and occasionally some models may have different CPUs and memory. At this time, we can use prototype mode to quickly copy and only modify some of the differences.
Prototype mode production mobile phone class diagram:
##
完整源码:https://link.juejin.cn/?target=https%3A%2F%2Fgithub.com%2Fzhangyue0503%2Fdesignpatterns-php%2Fblob%2Fmaster%2F08.prototype%2Fsource%2Fprototype-phone.php
<?php interface ServiceProvicer { public function getSystem(); } class ChinaMobile implements ServiceProvicer { public $system; public function getSystem(){ return "中国移动" . $this->system; } } class ChinaUnicom implements ServiceProvicer { public $system; public function getSystem(){ return "中国联通" . $this->system; } } class Phone { public $service_province; public $cpu; public $rom; } class CMPhone extends Phone { function __clone() { // $this->service_province = new ChinaMobile(); } } class CUPhone extends Phone { function __clone() { $this->service_province = new ChinaUnicom(); } } $cmPhone = new CMPhone(); $cmPhone->cpu = "1.4G"; $cmPhone->rom = "64G"; $cmPhone->service_province = new ChinaMobile(); $cmPhone->service_province->system = 'TD-CDMA'; $cmPhone1 = clone $cmPhone; $cmPhone1->service_province->system = 'TD-CDMA1'; var_dump($cmPhone); var_dump($cmPhone1); echo $cmPhone->service_province->getSystem(); echo $cmPhone1->service_province->getSystem(); $cuPhone = new CUPhone(); $cuPhone->cpu = "1.4G"; $cuPhone->rom = "64G"; $cuPhone->service_province = new ChinaUnicom(); $cuPhone->service_province->system = 'WCDMA'; $cuPhone1 = clone $cuPhone; $cuPhone1->rom = "128G"; $cuPhone1->service_province->system = 'WCDMA1'; var_dump($cuPhone); var_dump($cuPhone1); echo $cuPhone->service_province->getSystem(); echo $cuPhone1->service_province->getSystem();Description:
The attributes in the service_province object in cmPhone have also changed.
In CUPhone, we created a new service_province object. This time the value of the referenced object in
cuPhone outside.
##Original address: https://juejin.cn/post/ 6844903942220939272Author: Hardcore Project ManagerRecommended learning: "
PHP Video Tutorial"
The above is the detailed content of Learn about the prototype pattern in PHP in one article. For more information, please follow other related articles on the PHP Chinese website!