-
Notifications
You must be signed in to change notification settings - Fork 150
/
underscore.php
1120 lines (831 loc) · 36 KB
/
underscore.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
/**
* Underscore.php v1.3.1
* Copyright (c) 2011 Brian Haveri
* Underscore.php is licensed under the MIT license
* Underscore.php was inspired by and borrowed from Underscore.js
* For docs, license, tests, and downloads, see: http://brianhaveri.github.com/Underscore.php
*/
// Returns an instance of __ for OO-style calls
function __($item=null) {
$__ = new __;
if(func_num_args() > 0) $__->_wrapped = $item;
return $__;
}
// Underscore.php
class __ {
// Start the chain
private $_chained = false; // Are we in a chain?
public function chain($item=null) {
list($item) = self::_wrapArgs(func_get_args(), 1);
$__ = (isset($this) && isset($this->_chained) && $this->_chained) ? $this : __($item);
$__->_chained = true;
return $__;
}
// End the chain
public function value() {
return (isset($this)) ? $this->_wrapped : null;
}
// Invoke the iterator on each item in the collection
public function each($collection=null, $iterator=null) {
list($collection, $iterator) = self::_wrapArgs(func_get_args(), 2);
if(is_null($collection)) return self::_wrap(null);
$collection = (array) self::_collection($collection);
if(count($collection) === 0) return self::_wrap(null);
foreach($collection as $k=>$v) {
call_user_func($iterator, $v, $k, $collection);
}
return self::_wrap(null);
}
// Return an array of values by mapping each item through the iterator
// map alias: collect
public function collect($collection=null, $iterator=null) { return self::map($collection, $iterator); }
public function map($collection=null, $iterator=null) {
list($collection, $iterator) = self::_wrapArgs(func_get_args(), 2);
if(is_null($collection)) return self::_wrap(array());
$collection = (array) self::_collection($collection);
if(count($collection) === 0) self::_wrap(array());
$return = array();
foreach($collection as $k=>$v) {
$return[] = call_user_func($iterator, $v, $k, $collection);
}
return self::_wrap($return);
}
// Reduce a collection to a single value
// reduce aliases: foldl, inject
public function foldl($collection=null, $iterator=null, $memo=null) { return self::reduce($collection, $iterator, $memo); }
public function inject($collection=null, $iterator=null, $memo=null) { return self::reduce($collection, $iterator, $memo); }
public function reduce($collection=null, $iterator=null, $memo=null) {
list($collection, $iterator, $memo) = self::_wrapArgs(func_get_args(), 3);
if(!is_object($collection) && !is_array($collection)) {
if(is_null($memo)) throw new Exception('Invalid object');
else return self::_wrap($memo);
}
return self::_wrap(array_reduce($collection, $iterator, $memo));
}
// Right-associative version of reduce
// reduceRight alias: foldr
public function foldr($collection=null, $iterator=null, $memo=null) { return self::reduceRight($collection, $iterator, $memo); }
public function reduceRight($collection=null, $iterator=null, $memo=null) {
list($collection, $iterator, $memo) = self::_wrapArgs(func_get_args(), 3);
if(!is_object($collection) && !is_array($collection)) {
if(is_null($memo)) throw new Exception('Invalid object');
else return self::_wrap($memo);
}
krsort($collection);
$__ = new self;
return self::_wrap($__->reduce($collection, $iterator, $memo));
}
// Extract an array of values for a given property
public function pluck($collection=null, $key=null) {
list($collection, $key) = self::_wrapArgs(func_get_args(), 2);
$collection = (array) self::_collection($collection);
$return = array();
foreach($collection as $item) {
foreach($item as $k=>$v) {
if($k === $key) $return[] = $v;
}
}
return self::_wrap($return);
}
// Does the collection contain this value?
// includ alias: contains
public function contains($collection=null, $val=null) { return self::includ($collection, $val); }
public function includ($collection=null, $val=null) {
list($collection, $val) = self::_wrapArgs(func_get_args(), 2);
$collection = (array) self::_collection($collection);
return self::_wrap((array_search($val, $collection, true) !== false));
}
// Invoke the named function over each item in the collection, optionally passing arguments to the function
public function invoke($collection=null, $function_name=null, $arguments=null) {
$args = self::_wrapArgs(func_get_args(), 2);
$__ = new self;
list($collection, $function_name) = $__->first($args, 2);
$arguments = $__->rest(func_get_args(), 2);
// If passed an array or string, return an array
// If passed an object, return an object
$is_obj = is_object($collection);
$result = (empty($arguments)) ? array_map($function_name, (array) $collection) : array_map($function_name, (array) $collection, $arguments);
if($is_obj) $result = (object) $result;
return self::_wrap($result);
}
// Does any values in the collection meet the iterator's truth test?
// any alias: some
public function some($collection=null, $iterator=null) { return self::any($collection, $iterator); }
public function any($collection=null, $iterator=null) {
list($collection, $iterator) = self::_wrapArgs(func_get_args(), 2);
$collection = self::_collection($collection);
$__ = new self;
if(!is_null($iterator)) $collection = $__->map($collection, $iterator);
if(count($collection) === 0) return self::_wrap(false);
return self::_wrap(is_int(array_search(true, $collection, false)));
}
// Do all values in the collection meet the iterator's truth test?
// all alias: every
public function every($collection=null, $iterator=null) { return self::all($collection, $iterator); }
public function all($collection=null, $iterator=null) {
list($collection, $iterator) = self::_wrapArgs(func_get_args(), 2);
$collection = self::_collection($collection);
$__ = new self;
if(!is_null($iterator)) $collection = $__->map($collection, $iterator);
$collection = (array) $collection;
if(count($collection) === 0) return true;
return self::_wrap(is_bool(array_search(false, $collection, false)));
}
// Return an array of values that pass the truth iterator test
// filter alias: select
public function select($collection=null, $iterator=null) { return self::filter($collection, $iterator); }
public function filter($collection=null, $iterator=null) {
list($collection, $iterator) = self::_wrapArgs(func_get_args(), 2);
$collection = self::_collection($collection);
$return = array();
foreach($collection as $val) {
if(call_user_func($iterator, $val)) $return[] = $val;
}
return self::_wrap($return);
}
// Return an array where the items failing the truth test are removed
public function reject($collection=null, $iterator=null) {
list($collection, $iterator) = self::_wrapArgs(func_get_args(), 2);
$collection = self::_collection($collection);
$return = array();
foreach($collection as $val) {
if(!call_user_func($iterator, $val)) $return[] = $val;
}
return self::_wrap($return);
}
// Return the value of the first item passing the truth iterator test
// find alias: detect
public function detect($collection=null, $iterator=null) { return self::find($collection, $iterator); }
public function find($collection=null, $iterator=null) {
list($collection, $iterator) = self::_wrapArgs(func_get_args(), 2);
$collection = self::_collection($collection);
foreach($collection as $val) {
if(call_user_func($iterator, $val)) return $val;
}
return self::_wrap(false);
}
// How many items are in this collection?
public function size($collection=null) {
list($collection) = self::_wrapArgs(func_get_args(), 1);
$collection = self::_collection($collection);
return self::_wrap(count((array) $collection));
}
// Get the first element of an array. Passing n returns the first n elements.
// first alias: head
public function head($collection=null, $n=null) { return self::first($collection, $n); }
public function first($collection=null, $n=null) {
list($collection, $n) = self::_wrapArgs(func_get_args(), 2);
$collection = self::_collection($collection);
if($n === 0) return self::_wrap(array());
if(is_null($n)) return self::_wrap(current(array_splice($collection, 0, 1, true)));
return self::_wrap(array_splice($collection, 0, $n, true));
}
// Get the rest of the array elements. Passing n returns from that index onward.
public function tail($collection=null, $index=null) { return self::rest($collection, $index); }
public function rest($collection=null, $index=null) {
list($collection, $index) = self::_wrapArgs(func_get_args(), 2);
if(is_null($index)) $index = 1;
$collection = self::_collection($collection);
return self::_wrap(array_splice($collection, $index));
}
// Return everything but the last array element. Passing n excludes the last n elements.
public function initial($collection=null, $n=null) {
list($collection, $n) = self::_wrapArgs(func_get_args(), 2);
$collection = (array) self::_collection($collection);
if(is_null($n)) $n = 1;
$first_index = count($collection) - $n;
$__ = new self;
return self::_wrap($__->first($collection, $first_index));
}
// Get the last element from an array. Passing n returns the last n elements.
public function last($collection=null, $n=null) {
list($collection, $n) = self::_wrapArgs(func_get_args(), 2);
$collection = self::_collection($collection);
if($n === 0) $result = array();
elseif($n === 1 || is_null($n)) $result = array_pop($collection);
else {
$__ = new self;
$result = $__->rest($collection, -$n);
}
return self::_wrap($result);
}
// Return a copy of the array with falsy values removed
public function compact($collection=null) {
list($collection) = self::_wrapArgs(func_get_args(), 1);
$collection = self::_collection($collection);
$__ = new self;
return self::_wrap($__->select($collection, function($val) {
return (bool) $val;
}));
}
// Flattens a multidimensional array
public function flatten($collection=null, $shallow=null) {
list($collection, $shallow) = self::_wrapArgs(func_get_args(), 2);
$collection = self::_collection($collection);
$return = array();
if(count($collection) > 0) {
foreach($collection as $item) {
if(is_array($item)) {
$__ = new self;
$return = array_merge($return, ($shallow) ? $item : $__->flatten($item));
}
else $return[] = $item;
}
}
return self::_wrap($return);
}
// Returns a copy of the array with all instances of val removed
public function without($collection=null, $val=null) {
$args = self::_wrapArgs(func_get_args(), 1);
$collection = $args[0];
$collection = self::_collection($collection);
$num_args = count($args);
if($num_args === 1) return self::_wrap($collection);
if(count($collection) === 0) return self::_wrap($collection);
$__ = new self;
$removes = $__->rest($args);
foreach($removes as $remove) {
$remove_keys = array_keys($collection, $remove, true);
if(count($remove_keys) > 0) {
foreach($remove_keys as $key) {
unset($collection[$key]);
}
}
}
return self::_wrap($collection);
}
// Return an array of the unique values
// uniq alias: unique
public function unique($collection=null, $is_sorted=null, $iterator=null) { return self::uniq($collection, $is_sorted, $iterator); }
public function uniq($collection=null, $is_sorted=null, $iterator=null) {
list($collection, $is_sorted, $iterator) = self::_wrapArgs(func_get_args(), 3);
$collection = self::_collection($collection);
$return = array();
if(count($collection) === 0) return self::_wrap($return);
$calculated = array();
foreach($collection as $item) {
$val = (!is_null($iterator)) ? $iterator($item) : $item;
if(is_bool(array_search($val, $calculated, true))) {
$calculated[] = $val;
$return[] = $item;
}
}
return self::_wrap($return);
}
// Returns an array containing the intersection of all the arrays
public function intersection($array=null) {
$arrays = self::_wrapArgs(func_get_args(), 1);
if(count($arrays) === 1) return self::_wrap($array);
$__ = new self;
$return = $__->first($arrays);
foreach($__->rest($arrays) as $next) {
if(!$__->isArray($next)) $next = str_split((string) $next);
$return = array_intersect($return, $next);
}
return self::_wrap(array_values($return));
}
// Merge together multiple arrays
public function union($array=null) {
$arrays = self::_wrapArgs(func_get_args(), 1);
if(count($arrays) === 1) return self::_wrap($array);
$__ = new self;
return self::_wrap($__->flatten(array_values(array_unique(call_user_func_array('array_merge', $arrays)))));
}
// Get the difference between two arrays
public function difference($array_one=null, $array_two=null) {
$arrays = self::_wrapArgs(func_get_args(), 1);
return self::_wrap(array_values(call_user_func_array('array_diff', $arrays)));
}
// Get the index of the first match
public function indexOf($collection=null, $item=null) {
list($collection, $item) = self::_wrapArgs(func_get_args(), 2);
$collection = self::_collection($collection);
$key = array_search($item, $collection, true);
return self::_wrap((is_bool($key)) ? -1 : $key);
}
// Get the index of the last match
public function lastIndexOf($collection=null, $item=null) {
list($collection, $item) = self::_wrapArgs(func_get_args(), 2);
$collection = self::_collection($collection);
krsort($collection);
$__ = new self;
return self::_wrap($__->indexOf($collection, $item));
}
// Returns an array of integers from start to stop (exclusive) by step
public function range($stop=null) {
$args = self::_wrapArgs(func_get_args(), 1);
$__ = new self;
$args = $__->reject($args, function($val) {
return is_null($val);
});
$num_args = count($args);
switch($num_args) {
case 1:
list($start, $stop, $step) = array(0, $args[0], 1);
break;
case 2:
list($start, $stop, $step) = array($args[0], $args[1], 1);
if($stop < $start) return self::_wrap(array());
break;
default:
list($start, $stop, $step) = array($args[0], $args[1], $args[2]);
if($step > 0 && $step > $stop) return self::_wrap(array($start));
}
$results = range($start, $stop, $step);
// Switch inclusive to exclusive
if($step > 0 && $__->last($results) >= $stop) array_pop($results);
elseif($step < 0 && $__->last($results) <= $stop) array_pop($results);
return self::_wrap($results);
}
// Merges arrays
public function zip($array=null) {
$arrays = self::_wrapArgs(func_get_args());
$num_arrays = count($arrays);
if($num_arrays === 1) return self::_wrap($array);
$__ = new self;
$num_return_arrays = $__->max($__->map($arrays, function($array) {
return count($array);
}));
$return_arrays = $__->range($num_return_arrays);
foreach($return_arrays as $k=>$v) {
if(!is_array($return_arrays[$k])) $return_arrays[$k] = array();
foreach($arrays as $a=>$array) {
$return_arrays[$k][$a] = array_key_exists($k, $array) ? $array[$k] : null;
}
}
return self::_wrap($return_arrays);
}
// Get the max value in the collection
public function max($collection=null, $iterator=null) {
list($collection, $iterator) = self::_wrapArgs(func_get_args(), 2);
if(is_null($iterator)) return self::_wrap(max($collection));
$results = array();
foreach($collection as $k=>$item) {
$results[$k] = $iterator($item);
}
arsort($results);
$__ = new self;
$first_key = $__->first(array_keys($results));
return $collection[$first_key];
}
// Get the min value in the collection
public function min($collection=null, $iterator=null) {
list($collection, $iterator) = self::_wrapArgs(func_get_args(), 2);
if(is_null($iterator)) return self::_wrap(min($collection));
$results = array();
foreach($collection as $k=>$item) {
$results[$k] = $iterator($item);
}
asort($results);
$__ = new self;
$first_key = $__->first(array_keys($results));
return self::_wrap($collection[$first_key]);
}
// Sort the collection by return values from the iterator
public function sortBy($collection=null, $iterator=null) {
list($collection, $iterator) = self::_wrapArgs(func_get_args(), 2);
$results = array();
foreach($collection as $k=>$item) {
$results[$k] = $iterator($item);
}
asort($results);
foreach($results as $k=>$v) {
$results[$k] = $collection[$k];
}
return self::_wrap(array_values($results));
}
// Group the collection by return values from the iterator
public function groupBy($collection=null, $iterator=null) {
list($collection, $iterator) = self::_wrapArgs(func_get_args(), 2);
$result = array();
$collection = (array) $collection;
foreach($collection as $k=>$v) {
$key = (is_callable($iterator)) ? $iterator($v, $k) : $v[$iterator];
if(!array_key_exists($key, $result)) $result[$key] = array();
$result[$key][] = $v;
}
return $result;
}
// Returns the index at which the value should be inserted into the sorted collection
public function sortedIndex($collection=null, $value=null, $iterator=null) {
list($collection, $value, $iterator) = self::_wrapArgs(func_get_args(), 3);
$collection = (array) self::_collection($collection);
$__ = new self;
$calculated_value = (!is_null($iterator)) ? $iterator($value) : $value;
while(count($collection) > 1) {
$midpoint = floor(count($collection) / 2);
$midpoint_values = array_slice($collection, $midpoint, 1);
$midpoint_value = $midpoint_values[0];
$midpoint_calculated_value = (!is_null($iterator)) ? $iterator($midpoint_value) : $midpoint_value;
$collection = ($calculated_value < $midpoint_calculated_value) ? array_slice($collection, 0, $midpoint, true) : array_slice($collection, $midpoint, null, true);
}
$keys = array_keys($collection);
return self::_wrap(current($keys) + 1);
}
// Shuffle the array
public function shuffle($collection=null) {
list($collection) = self::_wrapArgs(func_get_args(), 1);
$collection = (array) self::_collection($collection);
shuffle($collection);
return self::_wrap($collection);
}
// Return the collection as an array
public function toArray($collection=null) {
return (array) $collection;
}
// Get the collection's keys
public function keys($collection=null) {
list($collection) = self::_wrapArgs(func_get_args(), 1);
if(!is_object($collection) && !is_array($collection)) throw new Exception('Invalid object');
return self::_wrap(array_keys((array) $collection));
}
// Get the collection's values
public function values($collection=null) {
list($collection) = self::_wrapArgs(func_get_args(), 1);
return self::_wrap(array_values((array) $collection));
}
// Copy all properties from the source objects into the destination object
public function extend($object=null) {
$args = self::_wrapArgs(func_get_args(), 1);
$num_args = func_num_args();
if($num_args === 1) return $object;
$is_object = is_object($object);
$array = (array) $object;
$__ = new self;
$extensions = $__->rest(func_get_args());
foreach($extensions as $extension) {
$extension = (array) $extension;
$array = array_merge($array, $extension);
}
return self::_wrap(($is_object) ? (object) $array : $array);
}
// Returns the object with any missing values filled in using the defaults.
public function defaults($object=null) {
$args = self::_wrapArgs(func_get_args(), 1);
list($object) = $args;
$num_args = count($args);
if($num_args === 1) return $object;
$is_object = is_object($object);
$array = (array) $object;
$__ = new self;
$extensions = $__->rest($args);
foreach($extensions as $extension) {
$extension = (array) $extension;
$array = array_merge($extension, $array);
}
return self::_wrap(($is_object) ? (object) $array : $array);
}
// Get the names of functions available to the object
// functions alias: methods
public function methods($object=null) { return self::functions($object); }
public function functions($object=null) {
list($object) = self::_wrapArgs(func_get_args(), 1);
return self::_wrap(get_class_methods(get_class($object)));
}
// Returns a shallow copy of the object
public function clon(&$object=null) {
list($object) = self::_wrapArgs(func_get_args(), 1);
$clone = null;
if(is_array($object)) $clone = (array) clone (object) $object;
elseif(!is_object($object)) $clone = $object;
elseif(!$clone) $clone = clone $object;
// shallow copy object
if(is_object($clone) && count($clone) > 0) {
foreach($clone as $k=>$v) {
if(is_array($v) || is_object($v)) $clone->$k =& $object->$k;
}
}
// shallow copy array
elseif(is_array($clone) && count($clone) > 0) {
foreach($clone as $k=>$v) {
if(is_array($v) || is_object($v)) $clone[$k] =& $object[$k];
}
}
return self::_wrap($clone);
}
// Invokes the interceptor on the object, then returns the object
public function tap($object=null, $interceptor=null) {
list($object, $interceptor) = self::_wrapArgs(func_get_args(), 2);
$interceptor($object);
return self::_wrap($object);
}
// Does the given key exist?
public function has($collection=null, $key=null) {
list($collection, $key) = self::_wrapArgs(func_get_args(), 2);
$collection = (array) self::_collection($collection);
return self::_wrap(array_key_exists($key, $collection));
}
// Are these items equal?
public function isEqual($a=null, $b=null) {
list($a, $b) = self::_wrapArgs(func_get_args(), 2);
if(isset($this) && isset($this->_chained) && $this->_chained) $a =& $this;
if($a === $b) return self::_wrap(true);
if(gettype($a) !== gettype($b)) return self::_wrap(false);
if(is_callable($a) !== is_callable($b)) return self::_wrap(false);
if($a == $b) return self::_wrap(true);
// Objects and arrays compared by values
if(is_object($a) || is_array($a)) {
// Do either implement isEqual()?
if(is_object($a) && isset($a->isEqual)) return self::_wrap($a->isEqual($b));
if(is_object($b) && isset($b->isEqual)) return self::_wrap($b->isEqual($a));
if(is_array($a) && array_key_exists('isEqual', $a)) return self::_wrap($a['isEqual']($b));
if(is_array($b) && array_key_exists('isEqual', $b)) return self::_wrap($b['isEqual']($a));
if(count($a) !== count($b)) return self::_wrap(false);
$__ = new self;
$keys_equal = $__->isEqual($__->keys($a), $__->keys($b));
$values_equal = $__->isEqual($__->values($a), $__->values($b));
return self::_wrap($keys_equal && $values_equal);
}
return self::_wrap(false);
}
// Is this item empty?
public function isEmpty($item=null) {
list($item) = self::_wrapArgs(func_get_args(), 1);
return self::_wrap(is_array($item) || is_object($item)) ? !((bool) count((array) $item)) : (!(bool) $item);
}
// Is this item an object?
public function isObject($item=null) {
list($item) = self::_wrapArgs(func_get_args(), 1);
return self::_wrap(is_object($item));
}
// Is this item an array?
public function isArray($item=null) {
list($item) = self::_wrapArgs(func_get_args(), 1);
return self::_wrap(is_array($item));
}
// Is this item a string?
public function isString($item=null) {
list($item) = self::_wrapArgs(func_get_args(), 1);
return self::_wrap(is_string($item));
}
// Is this item a number?
public function isNumber($item=null) {
list($item) = self::_wrapArgs(func_get_args(), 1);
return self::_wrap((is_int($item) || is_float($item)) && !is_nan($item) && !is_infinite($item));
}
// Is this item a bool?
public function isBoolean($item=null) {
list($item) = self::_wrapArgs(func_get_args(), 1);
return self::_wrap(is_bool($item));
}
// Is this item a function (by type, not by name)?
public function isFunction($item=null) {
list($item) = self::_wrapArgs(func_get_args(), 1);
return self::_wrap(is_object($item) && is_callable($item));
}
// Is this item an instance of DateTime?
public function isDate($item=null) {
list($item) = self::_wrapArgs(func_get_args(), 1);
return self::_wrap(is_object($item) && get_class($item) === 'DateTime');
}
// Is this item a NaN value?
public function isNaN($item=null) {
list($item) = self::_wrapArgs(func_get_args(), 1);
return self::_wrap(is_nan($item));
}
// Returns the same value passed as the argument
public function identity() {
$args = self::_wrapArgs(func_get_args(), 1);
if(is_array($args)) return self::_wrap($args[0]);
return self::_wrap(function($x) {
return $x;
});
}
// Generate a globally unique id, optionally prefixed
public $_uniqueId = -1;
public function uniqueId($prefix=null) {
list($prefix) = self::_wrapArgs(func_get_args(), 1);
$_instance = self::getInstance();
$_instance->_uniqueId++;
return (is_null($prefix)) ? self::_wrap($_instance->_uniqueId) : self::_wrap($prefix . $_instance->_uniqueId);
}
// Invokes the iterator n times
public function times($n=null, $iterator=null) {
list($n, $iterator) = self::_wrapArgs(func_get_args(), 2);
if(is_null($n)) $n = 0;
for($i=0; $i<$n; $i++) $iterator($i);
return self::_wrap(null);
}
// Extend the class with your own functions
private $_mixins = array();
public function mixin($functions=null) {
list($functions) = self::_wrapArgs(func_get_args(), 1);
$mixins =& self::getInstance()->_mixins;
foreach($functions as $name=>$function) {
$mixins[$name] = $function;
}
return self::_wrap(null);
}
// Allows extending methods in static context
public static function __callStatic($name, $arguments) {
$mixins =& self::getInstance()->_mixins;
return call_user_func_array($mixins[$name], $arguments);
}
// Allows extending methods in non-static context
public function __call($name, $arguments) {
$mixins =& self::getInstance()->_mixins;
$arguments = self::_wrapArgs($arguments);
return call_user_func_array($mixins[$name], $arguments);
}
// Temporary PHP open and close tags used within templates
// Allows for normal processing of templates even when
// the developer uses PHP open or close tags for interpolation or evaluation
const TEMPLATE_OPEN_TAG = '760e7dab2836853c63805033e514668301fa9c47';
const TEMPLATE_CLOSE_TAG= 'd228a8fa36bd7db108b01eddfb03a30899987a2b';
const TEMPLATE_DEFAULT_EVALUATE = '/<%([\s\S]+?)%>/';
const TEMPLATE_DEFAULT_INTERPOLATE= '/<%=([\s\S]+?)%>/';
const TEMPLATE_DEFAULT_ESCAPE = '/<%-([\s\S]+?)%>/';
public $_template_settings = array(
'evaluate' => self::TEMPLATE_DEFAULT_EVALUATE,
'interpolate' => self::TEMPLATE_DEFAULT_INTERPOLATE,
'escape' => self::TEMPLATE_DEFAULT_ESCAPE
);
// Set template settings
public function templateSettings($settings=null) {
$_template_settings =& self::getInstance()->_template_settings;
if(is_null($settings)) {
$_template_settings = array(
'evaluate' => self::TEMPLATE_DEFAULT_EVALUATE,
'interpolate' => self::TEMPLATE_DEFAULT_INTERPOLATE,
'escape' => self::TEMPLATE_DEFAULT_ESCAPE
);
return true;
}
foreach($settings as $k=>$v) {
if(!array_key_exists($k, $_template_settings)) continue;
$_template_settings[$k] = $v;
}
return true;
}
// Compile templates into functions that can be evaluated for rendering
public function template($code=null, $context=null) {
list($code, $context) = self::_wrapArgs(func_get_args(), 2);
$class_name = __CLASS__;
$return = self::_wrap(function($context=null) use ($code, $class_name) {
$ts = $class_name::getInstance()->_template_settings;
// Wrap escaped, interpolated, and evaluated blocks inside PHP tags
extract((array) $context);
preg_match_all($ts['escape'], $code, $vars, PREG_SET_ORDER);
if(count($vars) > 0) {
foreach($vars as $var) {
$echo = $class_name::TEMPLATE_OPEN_TAG . ' echo htmlentities(' . trim($var[1]) . '); ' . $class_name::TEMPLATE_CLOSE_TAG;
$code = str_replace($var[0], $echo, $code);
}
}
preg_match_all($ts['interpolate'], $code, $vars, PREG_SET_ORDER);
if(count($vars) > 0) {
foreach($vars as $var) {
$echo = $class_name::TEMPLATE_OPEN_TAG . ' echo ' . trim($var[1]) . '; ' . $class_name::TEMPLATE_CLOSE_TAG;
$code = str_replace($var[0], $echo, $code);
}
}
preg_match_all($ts['evaluate'], $code, $vars, PREG_SET_ORDER);
if(count($vars) > 0) {
foreach($vars as $var) {
$echo = $class_name::TEMPLATE_OPEN_TAG . trim($var[1]) . $class_name::TEMPLATE_CLOSE_TAG;
$code = str_replace($var[0], $echo, $code);
}
}
$code = str_replace($class_name::TEMPLATE_OPEN_TAG, '<?php ', $code);
$code = str_replace($class_name::TEMPLATE_CLOSE_TAG, '?>', $code);
// Use the output buffer to grab the return value
$code = 'ob_start(); extract($context); ?>' . $code . '<?php return ob_get_clean();';
$func = create_function('$context', $code);
return $func((array) $context);
});
// Return function or call function depending on context
return self::_wrap(((isset($this) && isset($this->_wrapped) && $this->_wrapped) || !is_null($context)) ? $return($context) : $return);
}
// Escape
public function escape($item=null) {
list($item) = self::_wrapArgs(func_get_args(), 1);
return self::_wrap(htmlentities($item));
}
// Memoizes a function by caching the computed result.
public $_memoized = array();
public function memoize($function=null, $hashFunction=null) {
list($function, $hashFunction) = self::_wrapArgs(func_get_args(), 2);
$_instance = (isset($this) && isset($this->_wrapped)) ? $this : self::getInstance();
return self::_wrap(function() use ($function, &$_instance, $hashFunction) {
// Generate a key based on hashFunction
$args = func_get_args();
if(is_null($hashFunction)) $hashFunction = function($function, $args) {
// Try using var_export to identify the function
return md5(join('_', array(
var_export($function, true),
var_export($args, true)
)));
};
$key = $hashFunction($function, $args);
if(!array_key_exists($key, $_instance->_memoized)) {
$_instance->_memoized[$key] = call_user_func_array($function, $args);
}
return $_instance->_memoized[$key];
});
}
// Throttles a function so that it can only be called once every wait milliseconds
public $_throttled = array();
public function throttle($function=null, $wait=null) {
list($function, $wait) = self::_wrapArgs(func_get_args(), 2);
$_instance = (isset($this) && isset($this->_wrapped)) ? $this : self::getInstance();
return self::_wrap(function() use ($function, $wait, &$_instance) {
// Try using var_export to identify the function
$key = md5(join('', array(
var_export($function, true),
$wait
)));
$microtime = microtime(true);