search
HomeBackend DevelopmentPHP TutorialLearn about the prototype pattern in PHP in one article

Learn about the prototype pattern in PHP in one article

Jul 07, 2021 pm 07:22 PM
phpPrototype patternDesign Patterns

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.

Learn about the prototype pattern in PHP in one article

#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 class diagram and explanation

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:

Learn about the prototype pattern in PHP in one article

##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. Learn about the prototype pattern in PHP in one article

    The prototype mode seems to copy the same object, but please note that when copying, the __construct() method is not called, that is, when you run this code, create Only output once. This also brings out one of the biggest features of the prototype pattern-
  • Reduce the overhead of creating objects.
  • Based on the above characteristics, we can quickly copy a large number of identical objects, such as when we want to stuff a large number of identical objects into an array.
  • If the copied objects are all value type attributes, we can modify them arbitrarily without affecting the prototype. If there are reference type variables, some processing needs to be done in the __clone() method. Otherwise, modifying the contents of the reference variables of the copied object will affect the contents of the prototype object.

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

Example

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 = &#39;TD-CDMA&#39;;
$cmPhone1 = clone $cmPhone;
$cmPhone1->service_province->system = &#39;TD-CDMA1&#39;;

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 = &#39;WCDMA&#39;;
$cuPhone1 = clone $cuPhone;
$cuPhone1->rom = "128G";
$cuPhone1->service_province->system = &#39;WCDMA1&#39;;

var_dump($cuPhone);
var_dump($cuPhone1);
echo $cuPhone->service_province->getSystem();
echo $cuPhone1->service_province->getSystem();
Learn about the prototype pattern in PHP in one article

Description:

    I printed a lot of things, but the main thing is to look at the mobile phone, that is, the __clone() method in CMPhone. We did not re-initialize a new object. At this time, the copied
  • cmPhone contains the same object. Yes, this is a reference duplication problem. The reference just copies the address of the reference, they point to the same object. when

    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.

  • The most important thing in prototype mode is to pay attention to the above two points, while ordinary value attributes will be copied directly and this problem will not occur. Two other concepts are involved here: Shallow copy and Deep copy
  • Shallow copy means that all variables of the copied object contain the same variables as the original object. value, and all references to other objects still point to the original object
  • Deep copy points the variable of the referenced object to the copied new object, not the original referenced object
  • Regarding the issues of references and values, we will explain them in other articles. Please follow WeChat or Nuggets account
##Original address: https://juejin.cn/post/ 6844903942220939272

Author: Hardcore Project Manager

Recommended 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!

Statement
This article is reproduced at:掘金社区. If there is any infringement, please contact admin@php.cn delete
PHP's Purpose: Building Dynamic WebsitesPHP's Purpose: Building Dynamic WebsitesApr 15, 2025 am 12:18 AM

PHP is used to build dynamic websites, and its core functions include: 1. Generate dynamic content and generate web pages in real time by connecting with the database; 2. Process user interaction and form submissions, verify inputs and respond to operations; 3. Manage sessions and user authentication to provide a personalized experience; 4. Optimize performance and follow best practices to improve website efficiency and security.

PHP: Handling Databases and Server-Side LogicPHP: Handling Databases and Server-Side LogicApr 15, 2025 am 12:15 AM

PHP uses MySQLi and PDO extensions to interact in database operations and server-side logic processing, and processes server-side logic through functions such as session management. 1) Use MySQLi or PDO to connect to the database and execute SQL queries. 2) Handle HTTP requests and user status through session management and other functions. 3) Use transactions to ensure the atomicity of database operations. 4) Prevent SQL injection, use exception handling and closing connections for debugging. 5) Optimize performance through indexing and cache, write highly readable code and perform error handling.

How do you prevent SQL Injection in PHP? (Prepared statements, PDO)How do you prevent SQL Injection in PHP? (Prepared statements, PDO)Apr 15, 2025 am 12:15 AM

Using preprocessing statements and PDO in PHP can effectively prevent SQL injection attacks. 1) Use PDO to connect to the database and set the error mode. 2) Create preprocessing statements through the prepare method and pass data using placeholders and execute methods. 3) Process query results and ensure the security and performance of the code.

PHP and Python: Code Examples and ComparisonPHP and Python: Code Examples and ComparisonApr 15, 2025 am 12:07 AM

PHP and Python have their own advantages and disadvantages, and the choice depends on project needs and personal preferences. 1.PHP is suitable for rapid development and maintenance of large-scale web applications. 2. Python dominates the field of data science and machine learning.

PHP in Action: Real-World Examples and ApplicationsPHP in Action: Real-World Examples and ApplicationsApr 14, 2025 am 12:19 AM

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

PHP: Creating Interactive Web Content with EasePHP: Creating Interactive Web Content with EaseApr 14, 2025 am 12:15 AM

PHP makes it easy to create interactive web content. 1) Dynamically generate content by embedding HTML and display it in real time based on user input or database data. 2) Process form submission and generate dynamic output to ensure that htmlspecialchars is used to prevent XSS. 3) Use MySQL to create a user registration system, and use password_hash and preprocessing statements to enhance security. Mastering these techniques will improve the efficiency of web development.

PHP and Python: Comparing Two Popular Programming LanguagesPHP and Python: Comparing Two Popular Programming LanguagesApr 14, 2025 am 12:13 AM

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

The Enduring Relevance of PHP: Is It Still Alive?The Enduring Relevance of PHP: Is It Still Alive?Apr 14, 2025 am 12:12 AM

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.