-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.php
156 lines (129 loc) · 2.42 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<?php
/**
* Design pattern "Builder" (Creational)
* This is demo code
* See for details: http://maxsite.org/page/php-patterns
*/
/**
* Sample Product
*/
class Product
{
private $list;
public function add($elem)
{
$this->list[] = $elem;
}
public function getProduct()
{
foreach ($this->list as $el) {
echo $el . '<br>';
}
}
}
/**
* Director use builder
*/
class Director
{
public function setConstruct($builder)
{
$builder->buildPartA();
$builder->buildPartB();
}
}
/**
* base for Builder
*/
abstract class BuilderAbstract
{
public function buildPartA()
{
}
public function buildPartB()
{
}
abstract public function getResult();
}
/**
* Builder1 knows how to make a product
*/
class ConcreteBuilder1 extends BuilderAbstract
{
private $product;
public function __construct()
{
$this->product = new Product();
}
public function buildPartA()
{
$this->product->add('Builder First Part A');
}
public function buildPartB()
{
$this->product->add('Builder First Part B');
}
public function getResult()
{
return $this->product;
}
}
/**
* Builder2 knows how to make a product
*/
class ConcreteBuilder2 extends BuilderAbstract
{
private $product;
public function __construct()
{
$this->product = new Product();
}
public function buildPartA()
{
$this->product->add('Builder Second Part A');
}
public function buildPartB()
{
$this->product->add('Builder Second Part B');
}
public function getResult()
{
return $this->product;
}
}
/**
* demo
*/
/**
* set director
*/
$director = new Director();
/**
* set builders
*/
$builder1 = new ConcreteBuilder1();
$builder2 = new ConcreteBuilder2();
/**
* set Construct
*/
$director->setConstruct($builder1);
/**
* get product
*/
$product1 = $builder1->getResult();
$product1->getProduct();
/*
Builder First Part A
Builder First Part B
*/
/**
* use builder2 for other product2
*/
$director->setConstruct($builder2);
$product2 = $builder2->getResult();
$product2->getProduct();
/*
Builder Second Part A
Builder Second Part B
*/
# end of file