-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoop2.php
More file actions
311 lines (232 loc) · 4.72 KB
/
Copy pathoop2.php
File metadata and controls
311 lines (232 loc) · 4.72 KB
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
<?php
/**
* Elements of Object-Oriented Design
*
*
*
Traits */
namespace Ds\Util;
trait SecureDebugInfo{
public function __debugInfo(){
$info = (array) $this;
foreach ($info as $key => $value) {
if($key[0] == '_'){
unset($info[$key]);
}
}
}
}
namespace Ds;
class Myclass{
use Util\SecureDebugInfo;
}
trait One{
public function one(){}
}
trait Two{
public function two(){}
}
trait Three{
use One, Two; // trait three now comprise of all three traits.
public function Three(){}
}
/*
Trait inheritance
*/
class Numbers{
use One; // adds One->one();
public function two(){}
public function three(){}
}
class MoreNumbers extends Numbers
{
use Two; //Two->two() overrides Numbers->two()
public function one(){ } // Overrides Number->one()
//
}
class EvenMoreNumbers extends MoreNumbers{
use Three;
/*
Three->one() Overrides MoreNumbers->one()
Three->two() Overrides MoreNumbers->two()
Three->three() Overrides inherited Numbers->three()
*/
public function three(){} // Overrides Three->three()
}
/*
Trait Requirements
*/
trait SecureDebugInfo2{
public function __debugInfo(){
return $this->getData();
}
abstract public function getData();
}
/*
//Conflict Resolution
class MyClass2{
use Ds\Util\SecureDebugInfo2, MyFramework\DebugHelper{
Ds\Util\SecureDebugInfo2::__debugInfo insteadof My\MyFramework\DebugHelper;
}
}
//Aliases and Method Visibility
class MyClass3{
use Ds\Util\SecureDebugInfo2, MyFramework\DebugHelper{
Ds\Util\SecureDebugInfo2::__debugInfo insteadof My\MyFramework\DebugHelper;
My\MyFramework\DebugHelper::__debugInfo as DebugHelperInfo;
}
}
//Aliases a trait to change visibility
class MyClass4{
use Mytrait{
Mytrait::myMethod as protected;
MyTrait::myOtherMethod as private NewMthodName;
}
}
*/
//Detecting Traits
/*
class Numbers2{
use one, two;
}
var_dump(class_uses(new Numbers2));
array(2) {
["Ds\One"]=>
string(6) "Ds\One"
["Ds\Two"]=>
string(6) "Ds\Two"
}
*/
/*
Desing Pattern =
Singleton Pattern
class DB{
private static $_singleton;
private $_connection;
private function __construct($dns){
$this->__connection = new PDO($dns);
}
public static function getInstance(){
if(is_null(self::$_singleton)){
self::$_singleton = new DB();
}
return self::$_singleton;
}
}
$db = DB::getInstance();
/*
The Factory Pattern
*/
class Configuration{
const STORE_INI = 1;
const STORE_DB = 2;
const STORE_XML = 3;
public static function getStore($type= self::STORE_XML){
switch ($type) {
case self::STORE_INI:
return new Configuration_Ini();
case self::STORE_DB:
return new Configuration_DB();
case self::STORE_XML:
return new Configuration_XML();
default:
throw new Exception("Unknown Datastore Specified.");
}
}
}
class Configuration_Ini{
}
class Configuration_DB{
}
class Configuration_XML{
}
$config = Configuration::getStore(Configuration::STORE_XML);
/*
The Registry Pattern
*/
class Registry{
private static $_register;
public static function add(&$item, $name = null){
if(is_object($item) && is_null($name)){
$name = get_class($item);
}elseif(is_null($name)){
$msg = "you must provide a name for non-objects";
throw new Exception($msg);
}
$name = strtolower($name);
self::$_register[$name] = $item;
}
public static function &get($name){
$name = strtolower($name);
if(array_key_exists($name, self::$_register)){
return self::$_register[$name];
} else{
$msg = " '$name' is not registered .";
throw new Exception($msg);
}
}
public static function exists($name){
$name = strtolower($name);
if(array_key_exists($name, self::$_register)){
return true;
}else{
return false;
}
}
}
/*
$db = new DB();
Registry::add($db);
// Later on
if(Registry::exists('DB')){
$db = Registry::get('DB');
}else{
die(' we lost our database connection somewhere. Bear with us.');
}
/*
Accessing Objects as Arrays
*/
interface ArrayAccess
{
function offsetSet($offset,$value);
function offsetGet($offset);
function offsetUnset($offset);
function offsetExists($offset);
}
class myArray implements ArrayAccess
{
protected $array = array();
function offsetSet($offset, $value){
if(!is_numeric($offset)){
throw new Exception("Invalid key $offset");
}
}
function offsetGet($offset){
return $this->array[$offset];
}
function offsetUnset($offset){
unset($this->array[$offset]);
}
function offsetExists($offset){
return array_key_exists($this->array, $offset);
}
}
$obj = new myArray();
//$obj[1]; works
$array = array(1, 2, 3, 4);
$obj = new \ArrayObject($array);
/*var_dump($obj);
object(ArrayObject)#3 (1) {
["storage":"ArrayObject":private]=>
array(4) {
[0]=>
int(1)
[1]=>
int(2)
[2]=>
int(3)
[3]=>
int(4)
}
}
*/