PHP Design Pattern Series - Builder Pattern_PHP Tutorial
What is Builder Mode
The builder pattern is mainly to eliminate the complex creation process of other objects.
Design scene
There is a user's UserInfo class. To create this class, you need to create the user's name, age, money and other information to obtain the user's specific information results.
Create a UserInfoBuilder user builder class. This class encapsulates the complex operations of creating UserInfo such as name, age, money, etc., simplifying the creation process of user classes
Code: UserInfo class. Creating the UserInfo class is complex and painful.
[php] view plaincopyprint?
//Builder pattern, the purpose is to eliminate the complex creation process of other objects
/* Class that describes a user, including user name, age, money */
class UserInfo {
protected $userName = '';
protected $userAge = '';
protected $userMoney = '';
Public function setUserName($userName) {
$this->userName = $userName;
}
Public function setUserAge($userAge) {
$this->userAge = $userAge;
}
Public function setUserMoney($userMoney) {
$this->userMoney = $userMoney;
}
Public function getPeople() {
echo "This person's name is: " . $this->setUserName . ', Age is: ' . $this->userAge . ', Money: ' . $this->userMoney;
}
}
/* It is very painful to instantiate and create this user. You need to set the user name, age and money*/
$peopleInfo = array(
'userName' => 'initphp',
'userAge' => 28,
'userMoney' => '100 yuan'
);
$UserInfo = new UserInfo;
//You need to set the user information step by step below to get the user details. The process is tangled and painful
$UserInfo->setUserName($peopleInfo['userName']);
$UserInfo->setUserAge($peopleInfo['userAge']);
$UserInfo->setUserMoney($peopleInfo['userMoney']);
$UserInfo->getPeople();
Code: UserInfoBuilder User information builder class, which encapsulates the creation process of UserInfo, making developers feel comfortable when using it
[php]
//Builder pattern, the purpose is to eliminate the complex creation process of other objects
include("UserInfo.php");
class UserInfoBuilder {
protected $obj;
Public function __construct() {
$this->obj = new UserInfo;
}
Public function buildPeople($peopleInfo) {
$this->obj->setUserName($peopleInfo['userName']);
$this->obj->setUserAge($peopleInfo['userAge']);
$this->obj->setUserMoney($peopleInfo['userMoney']);
}
Public function getPeople() {
$this->obj->getPeople();
}
}
/* The creation process is encapsulated, making it easy for users to use */
$peopleInfo = array(
'userName' => 'initphp',
'userAge' => 28,
'userMoney' => '100 yuan'
);
$UserInfoBuilder = new UserInfoBuilder;
$UserInfoBuilder->buildPeople($peopleInfo); //Directly build
$UserInfoBuilder->getPeople();
Author: initphp

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

Validator can be created by adding the following two lines in the controller.
