Analysis on php creator mode

Source: Internet
Author: User
This article uses examples to show us the creator mode in the php design mode and the scenario in which the creator mode is applied. we recommend it to you here. Creator mode:

In the creator mode, the client is no longer responsible for object creation and assembly. Instead, it submits the responsibility for object creation to its specific creator class and the Assembly responsibility to the Assembly class, the client calls the object to clarify the responsibilities of each class.
Application scenario: the creation process is complex and assembled in steps.

The code is as follows:


<? Php
/**
* Creator mode
*/
// Shopping cart
Class ShoppingCart {
// The selected item
Private $ _ goods = array ();
// Coupon for use
Private $ _ tickets = array ();
Public function addGoods ($ goods ){
$ This-> _ goods [] = $ goods;
}
Public function addTicket ($ ticket ){
$ This-> _ tickets [] = $ ticket;
}
Public function printInfo (){
Printf ("goods: % s, tickets: % sn", implode (',', $ this-> _ goods), implode (',', $ this-> _ tickets ));
}
}
// If we want to restore the shopping cart, for example, when the user closes the browser and then opens it, it will be restored based on the cookie.
$ Data = array (
'Goods' => array ('clothes ', 'Shoes '),
'Tickets '=> array ('subtract 10 '),
);
// If the creator mode is not used, you need to restore the shopping cart step by step in the business class.
// $ Cart = new ShoppingCart ();
// Foreach ($ data ['Goods '] as $ goods ){
// $ Cart-> addGoods ($ goods );
//}
// Foreach ($ data ['tickets'] as $ ticket ){
// $ Cart-> addTicket ($ ticket );
//}
// $ Cart-> printInfo ();
// Exit;
// We provide the creator class to encapsulate the data Assembly of the shopping cart.
Class CardBuilder {
Private $ _ card;
Function _ construct ($ card ){
$ This-> _ card = $ card;
}
Function build ($ data ){
Foreach ($ data ['Goods '] as $ goods ){
$ This-> _ card-> addGoods ($ goods );
}
Foreach ($ data ['tickets'] as $ ticket ){
$ This-> _ card-> addTicket ($ ticket );
}
}
Function getCrad (){
Return $ this-> _ card;
}
}
$ Cart = new ShoppingCart ();
$ Builder = new CardBuilder ($ cart );
$ Builder-> build ($ data );
Echo "after builder: n ";
$ Cart-> printInfo ();
?>

It can be seen that the external interface will be very simple and standardized after the data assembly process is encapsulated for complex internal data objects in the creator mode, and adding and modifying new data items will not affect the external environment.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.