-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbenchmark_array_merge_vs_plus.php
55 lines (45 loc) · 1.45 KB
/
benchmark_array_merge_vs_plus.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
<?php
declare(strict_types=1);
/** @noinspection AutoloadingIssuesInspection */
$numbers = range(0, 1000);
include "Collection.php";
$instances=100000;
$exist=true;
$array1=['repeated'=>'abc','b'=>'bcd','c'=>'def',20,30,40];
$array2=['repeated'=>'abc','d'=>'abc2','e'=>'bcd2','f'=>'def2',50,60,70];
function foreachMerge(&$array1, &$array2) {
$tmp=$array1;
foreach($array2 as $k=>$v) {
$tmp[$k] = $v;
}
return $tmp;
}
// **********************************************************************************
$t1=microtime(true);
for($i=0;$i<$instances;$i++) {
$r=array_merge($array1,$array2);
}
$t2=microtime(true);
$table['array_merge']=$t2-$t1.' ('.count($r).')';
// **********************************************************************************
$t1=microtime(true);
for($i=0;$i<$instances;$i++) {
$r=array_replace($array1,$array2);
}
$t2=microtime(true);
$table['array_replace']=$t2-$t1.' ('.count($r).')';
// **********************************************************************************
$t1=microtime(true);
for($i=0;$i<$instances;$i++) {
$r= $array1 + $array2;
}
$t2=microtime(true);
$table['plus']=$t2-$t1.' ('.count($r).')';
// **********************************************************************************
$t1=microtime(true);
for($i=0;$i<$instances;$i++) {
$r= foreachMerge($array1,$array2);
}
$t2=microtime(true);
$table['foreach']=$t2-$t1.' ('.count($r).')';
echo \mapache_commons\Collection::generateTable($table);