-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpudlObject.php
1282 lines (861 loc) · 38.3 KB
/
pudlObject.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
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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
if (!function_exists('is_owner')) {
/** @suppress PhanRedefineFunction */
function is_owner($path) { return $path; }
}
////////////////////////////////////////////////////////////////////////////////
// DEPENDENCIES
////////////////////////////////////////////////////////////////////////////////
require_once(is_owner(__DIR__.'/pudlData.php'));
require_once(is_owner(__DIR__.'/pudlInterfaces.php'));
require_once(is_owner(__DIR__.'/pudlConstants.php'));
////////////////////////////////////////////////////////////////////////////////
// HANDLE PHP VERSION SPECIFIC IMPLEMENTATIONS
////////////////////////////////////////////////////////////////////////////////
if (version_compare(PHP_VERSION, '8.0.0') >= 0) {
require_once(is_owner(__DIR__.'/pudlObject.modern.php'));
} else {
require_once(is_owner(__DIR__.'/pudlObject.legacy.php'));
}
class pudlObject
implements ArrayAccess,
pudlData {
use pudlObject_trait,
pudlData_shim;
////////////////////////////////////////////////////////////////////////////
// CONSTRUCTOR
////////////////////////////////////////////////////////////////////////////
public function __construct(&$data=NULL, $process=false) {
switch (true) {
case is_string($data) && is_string($process):
$x = @explode((string)$process, $data);
$x === false ? $this->free() : $this->govern($x);
break;
case $process === PUDL_CSV:
$x = @str_getcsv($data, ',', '"', '\\');
$x === [NULL] ? $this->free() : $this->govern($x);
break;
case !!$process:
$this->copy($data);
break;
default:
$this->govern($data);
}
}
////////////////////////////////////////////////////////////////////////////
// CLEARS ALL DATA WITHIN OBJECT - RESETTING BACK TO DEFAULTS
////////////////////////////////////////////////////////////////////////////
public function free() {
$this->__array = [];
$this->__snapshot = NULL;
return $this;
}
////////////////////////////////////////////////////////////////////////////
// MANAGE THE GIVEN ARRAY
////////////////////////////////////////////////////////////////////////////
public function govern(&$data) {
$this->free();
if (is_array($data)) {
$this->__array = &$data;
} else {
$this->merge($data);
}
return $this;
}
////////////////////////////////////////////////////////////////////////////
// CLEARS THE OBJECT'S ARRAY, AND THEN COPIES THE GIVEN ARRAY
////////////////////////////////////////////////////////////////////////////
public function copy($data) {
return $this->free()->merge($data);
}
////////////////////////////////////////////////////////////////////////////
// MERGE THE GIVEN ARRAY VALUES INTO THIS OBJECT
// http://php.net/manual/en/function.array-merge.php
////////////////////////////////////////////////////////////////////////////
public function merge($array, $nulls=true) {
if ($array instanceof pudlObject) $array = $array->raw();
if ($array instanceof pudlResult) $array = $array->complete();
if (empty($array) || !pudl_array($array)) return $this;
if ($nulls) {
$this->__array = array_merge($this->__array, $array);
} else {
foreach ($array as $key => $value) {
if (isset($this->__array[$key])) continue;
if (is_null($value)) continue;
is_int($key)
? ($this->__array[] = $value)
: ($this->__array[$key] = $value);
}
}
return $this;
}
////////////////////////////////////////////////////////////////////////////
// MERGE THE GIVEN ARRAY VALUES INTO THIS OBJECT, RECUSIVELY
// http://php.net/manual/en/function.array-merge-recursive.php
////////////////////////////////////////////////////////////////////////////
public function mergeRecursive($array) {
if ($array instanceof pudlObject) $array = $array->raw();
if (empty($array) || !pudl_array($array)) return $this;
$this->__array = array_merge_recursive($this->__array, $array);
return $this;
}
////////////////////////////////////////////////////////////////////////////
// MERGE THIS OBJECT INTO THE GIVEN ARRAY
////////////////////////////////////////////////////////////////////////////
public function mergeInto(&$array, $nulls=true) {
if ($array instanceof pudlObject) {
$arr = &$array->raw();
} else if (pudl_array($array)) {
$arr = &$array;
} else {
return $this;
}
if ($nulls) {
$arr = array_merge($arr, $this->__array);
} else {
foreach ($this->__array as $key => $value) {
if (isset($arr[$key])) continue;
if (is_null($value)) continue;
is_int($key)
? ($arr[] = $value)
: ($arr[$key] = $value);
}
}
return $this;
}
////////////////////////////////////////////////////////////////////////////
// REPLACE THE GIVEN ARRAY VALUES INTO THIS OBJECT
// http://php.net/manual/en/function.array-replace.php
////////////////////////////////////////////////////////////////////////////
public function replace($array) {
if ($array instanceof pudlObject) $array = $array->raw();
if (empty($array) || !pudl_array($array)) return $this;
$this->__array = array_replace($this->__array, $array);
return $this;
}
////////////////////////////////////////////////////////////////////////////
// REPLACE THE GIVEN ARRAY VALUES INTO THIS OBJECT, RECUSIVELY
// http://php.net/manual/en/function.array-replace-recursive.php
////////////////////////////////////////////////////////////////////////////
public function replaceRecursive($array) {
if ($array instanceof pudlObject) $array = $array->raw();
if (empty($array) || !pudl_array($array)) return $this;
$this->__array = array_replace_recursive($this->__array, $array);
return $this;
}
////////////////////////////////////////////////////////////////////////////
// COPY THE GIVEN ARRAY INTO THIS OBJECT, ONLY FOR KEYS THAT ARE MISSING
////////////////////////////////////////////////////////////////////////////
public function append($array) {
if (empty($array) || !pudl_array($array)) return $this;
foreach($array as $key => $value) {
if (array_key_exists($key, $this->__array)) continue;
$this->__array[$key] = $value;
}
return $this;
}
////////////////////////////////////////////////////////////////////////////
// COPIES THIS OBJECT INTO THE GIVEN ARRAY, ONLY FOR KEYS THAT ARE MISSING
////////////////////////////////////////////////////////////////////////////
public function appendInto(&$array) {
if (empty($array) || !pudl_array($array)) return $this;
foreach($this->__array as $key => $value) {
if (array_key_exists($key, $array)) continue;
$array[$key] = $value;
}
return $this;
}
////////////////////////////////////////////////////////////////////////////
// ITERATIVELY REDUCE THE ARRAY TO A SINGLE VALUE USING A CALLBACK FUNCTION
// http://php.net/manual/en/function.array-reduce.php
////////////////////////////////////////////////////////////////////////////
public function reduce(callable $callback, $initial=NULL) {
return array_reduce($this->__array, $callback, $initial);
}
////////////////////////////////////////////////////////////////////////////
// GET THE RAW ARRAY FOR THIS OBJECT
////////////////////////////////////////////////////////////////////////////
public function &raw() {
return $this->__array;
}
////////////////////////////////////////////////////////////////////////////
// COUNT ALL ELEMENTS IN AN ARRAY, OR SOMETHING IN AN OBJECT
// http://php.net/manual/en/function.count.php
////////////////////////////////////////////////////////////////////////////
public function _count() {
return count($this->__array);
}
////////////////////////////////////////////////////////////////////////////
// JOIN ARRAY ELEMENTS WITH A STRING
// http://php.net/manual/en/function.implode.php
////////////////////////////////////////////////////////////////////////////
public function implode($glue=',') {
return implode($glue, $this->__array);
}
////////////////////////////////////////////////////////////////////////////
// CHECKS IF A VALUE EXISTS IN AN ARRAY
// http://php.net/manual/en/function.in-array.php
////////////////////////////////////////////////////////////////////////////
public function in($value, $strict=false) {
return in_array($value, $this->__array, $strict);
}
////////////////////////////////////////////////////////////////////////////
// PAD ARRAY TO THE SPECIFIED LENGTH WITH A VALUE
// http://php.net/manual/en/function.array-pad.php
////////////////////////////////////////////////////////////////////////////
public function pad($size, $value) {
$this->__array = array_pad($this->__array, $size, $value);
return $this;
}
////////////////////////////////////////////////////////////////////////////
// PUSH ONE OR MORE ELEMENTS ONTO THE END OF ARRAY
// http://php.net/manual/en/function.array-push.php
////////////////////////////////////////////////////////////////////////////
public function push() {
$args = func_get_args();
array_unshift($args, NULL);
$args[0] = &$this->__array;
return call_user_func_array('array_push', $args);
}
////////////////////////////////////////////////////////////////////////////
// POP THE ELEMENT OFF THE END OF ARRAY
// http://php.net/manual/en/function.array-pop.php
////////////////////////////////////////////////////////////////////////////
public function pop() {
$args = func_get_args();
array_unshift($args, NULL);
$args[0] = &$this->__array;
return call_user_func_array('array_pop', $args);
}
////////////////////////////////////////////////////////////////////////////
// POP ITEMS OUT OF THE END OF THIS OBJECT
// http://php.net/manual/en/function.array-shift.php
////////////////////////////////////////////////////////////////////////////
public function shift() {
$args = func_get_args();
array_unshift($args, NULL);
$args[0] = &$this->__array;
return call_user_func_array('array_shift', $args);
}
////////////////////////////////////////////////////////////////////////////
// PREPEND ONE OR MORE ELEMENTS TO THE BEGINNING OF AN ARRAY
// http://php.net/manual/en/function.array-unshift.php
////////////////////////////////////////////////////////////////////////////
public function unshift() {
$args = func_get_args();
array_unshift($args, NULL);
$args[0] = &$this->__array;
return call_user_func_array('array_unshift', $args);
}
////////////////////////////////////////////////////////////////////////////
// EXCHANGES ALL KEYS WITH THEIR ASSOCIATED VALUES IN AN ARRAY
// http://php.net/manual/en/function.array-flip.php
////////////////////////////////////////////////////////////////////////////
public function flip() {
$this->__array = array_flip($this->__array);
return $this;
}
////////////////////////////////////////////////////////////////////////////
// RETURN AN ARRAY WITH ELEMENTS IN REVERSE ORDER
// http://php.net/manual/en/function.array-reverse.php
////////////////////////////////////////////////////////////////////////////
public function reverse($preserve_keys=true) {
$this->__array = array_reverse($this->__array, $preserve_keys);
return $this;
}
////////////////////////////////////////////////////////////////////////////
// SORT AN ARRAY
// http://php.net/manual/en/function.sort.php
////////////////////////////////////////////////////////////////////////////
public function sort($sort_flags=SORT_REGULAR) {
sort($this->__array, $sort_flags);
return $this;
}
////////////////////////////////////////////////////////////////////////////
// SORT AN ARRAY IN REVERSE ORDER
// http://php.net/manual/en/function.rsort.php
////////////////////////////////////////////////////////////////////////////
public function rsort($sort_flags=SORT_REGULAR) {
rsort($this->__array, $sort_flags);
return $this;
}
////////////////////////////////////////////////////////////////////////////
// SORT AN ARRAY AND MAINTAIN INDEX ASSOCIATION
// http://php.net/manual/en/function.asort.php
////////////////////////////////////////////////////////////////////////////
public function asort($sort_flags=SORT_REGULAR) {
asort($this->__array, $sort_flags);
return $this;
}
////////////////////////////////////////////////////////////////////////////
// SORT AN ARRAY IN REVERSE ORDER AND MAINTAIN INDEX ASSOCIATION
// http://php.net/manual/en/function.arsort.php
////////////////////////////////////////////////////////////////////////////
public function arsort($sort_flags=SORT_REGULAR) {
arsort($this->__array, $sort_flags);
return $this;
}
////////////////////////////////////////////////////////////////////////////
// SORT AN ARRAY BY KEY
// http://php.net/manual/en/function.ksort.php
////////////////////////////////////////////////////////////////////////////
public function ksort($sort_flags=SORT_REGULAR) {
ksort($this->__array, $sort_flags);
return $this;
}
////////////////////////////////////////////////////////////////////////////
// SORT AN ARRAY BY KEY IN REVERSE ORDER
// http://php.net/manual/en/function.krsort.php
////////////////////////////////////////////////////////////////////////////
public function krsort($sort_flags=SORT_REGULAR) {
krsort($this->__array, $sort_flags);
return $this;
}
////////////////////////////////////////////////////////////////////////////
// SHUFFLE AN ARRAY
// http://php.net/manual/en/function.shuffle.php
////////////////////////////////////////////////////////////////////////////
public function shuffle() {
shuffle($this->__array);
return $this;
}
////////////////////////////////////////////////////////////////////////////
// FILTERS ELEMENTS OF AN ARRAY USING A CALLBACK FUNCTION
// http://php.net/manual/en/function.array-filter.php
////////////////////////////////////////////////////////////////////////////
public function filter(callable $callback, $flags=0) {
return array_filter($this->__array, $callback, $flags);
}
////////////////////////////////////////////////////////////////////////////
// REMOVES DUPLICATE VALUES FROM AN ARRAY
// http://php.net/manual/en/function.array-unique.php
////////////////////////////////////////////////////////////////////////////
public function unique($flags=SORT_STRING) {
$this->__array = array_unique($this->__array, $flags);
return $this;
}
////////////////////////////////////////////////////////////////////////////
// COMPUTES THE DIFFERENCE OF ARRAYS
// http://php.net/manual/en/function.array-diff.php
////////////////////////////////////////////////////////////////////////////
public function diff() {
$args = func_get_args();
array_unshift($args, $this->__array);
return call_user_func_array('array_diff', $args);
}
////////////////////////////////////////////////////////////////////////////
// COMPUTES THE DIFFERENCE OF ARRAYS WITH ADDITIONAL INDEX CHECK
// http://php.net/manual/en/function.array-diff-assoc.php
////////////////////////////////////////////////////////////////////////////
public function diff_assoc() {
$args = func_get_args();
array_unshift($args, $this->__array);
return call_user_func_array('array_diff_assoc', $args);
}
////////////////////////////////////////////////////////////////////////////
// COMPUTES THE DIFFERENCE OF ARRAYS WITH ADDITIONAL INDEX CHECK RECURSIVELY
// http://php.net/manual/en/function.array-diff-assoc.php#111675
////////////////////////////////////////////////////////////////////////////
public function diff_assoc_recursive() {
$args = func_get_args();
array_unshift($args, $this->__array);
return call_user_func_array('array_diff_assoc_recursive', $args);
}
////////////////////////////////////////////////////////////////////////////
// COMPUTES THE DIFFERENCE OF ARRAYS USING KEYS FOR COMPARISON
// http://php.net/manual/en/function.array-diff-key.php
////////////////////////////////////////////////////////////////////////////
public function diff_key() {
$args = func_get_args();
array_unshift($args, $this->__array);
return call_user_func_array('array_diff_key', $args);
}
////////////////////////////////////////////////////////////////////////////
// COMPUTES THE INTERSECTION OF ARRAYS
// http://php.net/manual/en/function.array-intersect.php
////////////////////////////////////////////////////////////////////////////
public function intersect() {
$args = func_get_args();
array_unshift($args, $this->__array);
return call_user_func_array('array_intersect', $args);
}
////////////////////////////////////////////////////////////////////////////
// COMPUTES THE INTERSECTION OF ARRAYS WITH ADDITIONAL INDEX CHECK
// http://php.net/manual/en/function.array-intersect-assoc.php
////////////////////////////////////////////////////////////////////////////
public function intersect_assoc() {
$args = func_get_args();
array_unshift($args, $this->__array);
return call_user_func_array('array_intersect_assoc', $args);
}
////////////////////////////////////////////////////////////////////////////
// COMPUTES THE INTERSECTION OF ARRAYS USING KEYS FOR COMPARISON
// http://php.net/manual/en/function.array-intersect-key.php
////////////////////////////////////////////////////////////////////////////
public function intersect_key() {
$args = func_get_args();
array_unshift($args, $this->__array);
return call_user_func_array('array_intersect_key', $args);
}
////////////////////////////////////////////////////////////////////////////
// RETURN ALL THE KEYS OR A SUBSET OF THE KEYS OF AN ARRAY
// http://php.net/manual/en/function.array-keys.php
////////////////////////////////////////////////////////////////////////////
public function keys($search_value=null, $strict=false) {
return array_keys($this->__array, $search_value, $strict);
}
////////////////////////////////////////////////////////////////////////////
// SEARCHES THE ARRAY FOR A GIVEN VALUE
// AND RETURNS THE FIRST CORRESPONDING KEY
// http://php.net/manual/en/function.array-search.php
////////////////////////////////////////////////////////////////////////////
public function search($needle, $strict=false) {
return array_search($needle, $this->__array, $strict);
}
////////////////////////////////////////////////////////////////////////////
// PICK ONE OR MORE RANDOM KEYS OUT OF AN ARRAY
// http://php.net/manual/en/function.array-rand.php
////////////////////////////////////////////////////////////////////////////
public function random($num=-1) {
return array_rand($this->__array, $num);
}
////////////////////////////////////////////////////////////////////////////
// APPLIES THE CALLBACK TO THE ELEMENTS OF THE GIVEN ARRAYS
// http://php.net/manual/en/function.array-map.php
////////////////////////////////////////////////////////////////////////////
public function map(callable $callback) {
return array_map($callback, $this->__array);
}
////////////////////////////////////////////////////////////////////////////
// EXTRACT A SLICE OF THE ARRAY
// http://php.net/manual/en/function.array-slice.php
////////////////////////////////////////////////////////////////////////////
public function slice($offset, $length=NULL, $preserve_keys=false) {
return array_slice($this->__array, $offset, $length, $preserve_keys);
}
////////////////////////////////////////////////////////////////////////////
// REMOVE A PORTION OF THE ARRAY AND REPLACE IT WITH SOMETHING ELSE
// http://php.net/manual/en/function.array-splice.php
////////////////////////////////////////////////////////////////////////////
public function splice($offset, $length=NULL, $replacement=[]) {
if (is_null($length)) $length = count($this->__array);
return array_splice($this->__array, $offset, $length, $replacement);
}
////////////////////////////////////////////////////////////////////////////
// INJECT AN ITEM INTO THE MIDDLE OF THE ARRAY
////////////////////////////////////////////////////////////////////////////
public function inject($offset, $items) {
return array_splice($this->__array, $offset, 0, $items);
}
////////////////////////////////////////////////////////////////////////////
// RETURN ALL THE VALUES OF AN ARRAY
// http://php.net/manual/en/function.array-values.php
////////////////////////////////////////////////////////////////////////////
public function values() {
return array_values($this->__array);
}
////////////////////////////////////////////////////////////////////////////
// COUNTS ALL THE VALUES OF AN ARRAY
// http://php.net/manual/en/function.array-count-values.php
////////////////////////////////////////////////////////////////////////////
public function countValues() {
return array_count_values($this->__array);
}
////////////////////////////////////////////////////////////////////////////
// STRIP WHITESPACE FROM THE BEGINNING AND END OF A STRING
// http://php.net/manual/en/function.trim.php
////////////////////////////////////////////////////////////////////////////
public function trim($mask=" \t\n\r\0\x0B") {
foreach ($this->__array as &$item) trim($item, $mask);
return $this;
}
////////////////////////////////////////////////////////////////////////////
// STRIP WHITESPACE FROM THE BEGINNING OF A STRING
// http://php.net/manual/en/function.ltrim.php
////////////////////////////////////////////////////////////////////////////
public function ltrim($mask=" \t\n\r\0\x0B") {
foreach ($this->__array as &$item) ltrim($item, $mask);
return $this;
}
////////////////////////////////////////////////////////////////////////////
// STRIP WHITESPACE FROM THE END OF A STRING
// http://php.net/manual/en/function.rtrim.php
////////////////////////////////////////////////////////////////////////////
public function rtrim($mask=" \t\n\r\0\x0B") {
foreach ($this->__array as &$item) rtrim($item, $mask);
return $this;
}
////////////////////////////////////////////////////////////////////////////
// CALCULATE THE SUM OF VALUES IN AN ARRAY
// http://php.net/manual/en/function.array-sum.php
////////////////////////////////////////////////////////////////////////////
public function sum() {
return array_sum($this->__array);
}
////////////////////////////////////////////////////////////////////////////
// FIND LOWEST VALUE
// http://php.net/manual/en/function.min.php
////////////////////////////////////////////////////////////////////////////
public function min() {
return min($this->__array);
}
////////////////////////////////////////////////////////////////////////////
// FIND HIGHEST VALUE
// http://php.net/manual/en/function.max.php
////////////////////////////////////////////////////////////////////////////
public function max() {
return max($this->__array);
}
////////////////////////////////////////////////////////////////////////////
// MAGIC METHOD - RUN WHEN WRITING DATA TO INACCESSIBLE PROPERTIES
// http://php.net/manual/en/language.oop5.magic.php
////////////////////////////////////////////////////////////////////////////
public function __set($key, $value) {
$this->__array[$key] = $value;
}
////////////////////////////////////////////////////////////////////////////
// ARRAY ACCESS - ASSIGN A VALUE TO THE SPECIFIED OFFSET
// http://php.net/manual/en/arrayaccess.offsetset.php
////////////////////////////////////////////////////////////////////////////
public function _offsetSet($key, $value) {
if (is_null($key)) {
$this->__array[] = $value;
} else {
$this->__array[$key] = $value;
}
}
////////////////////////////////////////////////////////////////////////////
// MAGIC METHOD - UTILIZED FOR READING DATA FROM INACCESSIBLE PROPERTIES
// http://php.net/manual/en/language.oop5.magic.php
////////////////////////////////////////////////////////////////////////////
public function &__get($key) {
return $this->__array[$key];
}
////////////////////////////////////////////////////////////////////////////
// ARRAY ACCESS - OFFSET TO RETRIEVE
// http://php.net/manual/en/arrayaccess.offsetget.php
////////////////////////////////////////////////////////////////////////////
public function &_offsetGet($key) {
return $this->__array[$key];
}
////////////////////////////////////////////////////////////////////////////
// MAGIC METHOD - CALLING ISSET() OR EMPTY() ON INACCESSIBLE PROPERTIES
// http://php.net/manual/en/language.oop5.magic.php
////////////////////////////////////////////////////////////////////////////
public function __isset($key) {
return isset($this->__array[$key]);
}
////////////////////////////////////////////////////////////////////////////
// ARRAY ACCESS - WHETHER AN OFFSET EXISTS
// http://php.net/manual/en/arrayaccess.offsetexists.php
////////////////////////////////////////////////////////////////////////////
public function _offsetExists($key, $isset=true) {
return $isset
? isset($this->__array[$key])
: array_key_exists($key, $this->__array);
}
////////////////////////////////////////////////////////////////////////////
// MAGIC METHOD - INVOKED WHEN UNSET() IS USED ON INACCESSIBLE PROPERTIES
// http://php.net/manual/en/language.oop5.magic.php
////////////////////////////////////////////////////////////////////////////
public function __unset($key) {
unset($this->__array[$key]);
}
////////////////////////////////////////////////////////////////////////////
// ARRAY ACCESS - UNSET AN OFFSET
// http://php.net/manual/en/arrayaccess.offsetunset.php
////////////////////////////////////////////////////////////////////////////
public function _offsetUnset($key) {
unset($this->__array[$key]);
}
////////////////////////////////////////////////////////////////////////////
// SEEKABLE ITERATOR - MOVE THE ARRAY POINTER TO THE GIVEN ROW NUMBER
// http://php.net/manual/en/seekableiterator.seek.php
////////////////////////////////////////////////////////////////////////////
public function _seek($row) {
$row = (int) $row;
reset($this->__array);
while ($row-- > 0) next($this->__array);
}
////////////////////////////////////////////////////////////////////////////
// ITERATOR - REWIND THE ITERATOR TO THE FIRST ELEMENT
// http://php.net/manual/en/iterator.rewind.php
////////////////////////////////////////////////////////////////////////////
public function _rewind() {
reset($this->__array);
}
////////////////////////////////////////////////////////////////////////////
// ITERATOR - RETURN THE CURRENT ELEMENT
// http://php.net/manual/en/iterator.current.php
////////////////////////////////////////////////////////////////////////////
public function _current() {
return current($this->__array);
}
////////////////////////////////////////////////////////////////////////////
// ITERATOR - RETURN THE KEY OF THE CURRENT ELEMENT
// http://php.net/manual/en/iterator.key.php
////////////////////////////////////////////////////////////////////////////
public function _key() {
return key($this->__array);
}
////////////////////////////////////////////////////////////////////////////
// GETS THE FIRST KEY OF AN ARRAY
// http://php.net/manual/en/function.array-key-first.php
////////////////////////////////////////////////////////////////////////////
public function keyFirst() {
return array_key_first($this->__array);
}
////////////////////////////////////////////////////////////////////////////
// GETS THE LAST KEY OF AN ARRAY
// http://php.net/manual/en/function.array-key-last.php
////////////////////////////////////////////////////////////////////////////
public function keyLast() {
return array_key_last($this->__array);
}
////////////////////////////////////////////////////////////////////////////
// CHANGES THE CASE OF ALL KEYS IN AN ARRAY
// https://php.net/manual/en/function.array-change-key-case.php
////////////////////////////////////////////////////////////////////////////
public function keyCase($case=CASE_LOWER) {
$this->__array = array_change_key_case($this->__array, $case);
return $this;
}
////////////////////////////////////////////////////////////////////////////
// ITERATOR - MOVE FORWARD TO NEXT ELEMENT
// http://php.net/manual/en/iterator.next.php
////////////////////////////////////////////////////////////////////////////
public function _next() {
next($this->__array);
}
////////////////////////////////////////////////////////////////////////////
// ITERATOR - CHECKS IF CURRENT POSITION IS VALID
// http://php.net/manual/en/iterator.valid.php
////////////////////////////////////////////////////////////////////////////
public function _valid() {
$key = key($this->__array);
return ($key !== NULL && $key !== FALSE);
}
////////////////////////////////////////////////////////////////////////////
// RETURNS JSON SERIALIZABLE DATA
// http://php.net/manual/en/jsonserializable.jsonserialize.php
////////////////////////////////////////////////////////////////////////////
public function _jsonSerialize() {
return $this->__array;
}
////////////////////////////////////////////////////////////////////////////
// RETURNS THE JSON REPRESENTATION OF THIS OBJECT
// http://php.net/manual/en/function.json-encode.php
////////////////////////////////////////////////////////////////////////////
public function json() {
return pudl::jsonEncode($this);
}
////////////////////////////////////////////////////////////////////////////
// GET AN ARRAY FROM THIS OBJECT OF THE GIVEN KEYS ONLY
////////////////////////////////////////////////////////////////////////////
public function extract($keys) {
$return = [];
if (!pudl_array($keys)) $keys = func_get_args();
foreach ($keys as $key => $value) {
if (!is_string($key)) $key = $value;
if (!array_key_exists($key, $this->__array)) continue;
$return[$key] = $this->__array[$key];
}
return $return;
}
////////////////////////////////////////////////////////////////////////////
// GET AN ARRAY FROM THIS OBJECT OF ALL KEYS, EXCLUDING ONES LISTED IN $KEYS
////////////////////////////////////////////////////////////////////////////
public function exclude($keys) {