-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbenchmark_byval_vs_byref.php
67 lines (54 loc) · 1.33 KB
/
benchmark_byval_vs_byref.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
<?php
declare(strict_types=1);
/** @noinspection AutoloadingIssuesInspection */
$numbers = range(0, 1000);
include "Collection.php";
$instances=10000;
$exist=true;
function fn1($arg) {
return "aaa".$arg;
}
function fn2(&$arg) {
return "aaa".$arg;
}
function fn3($arg) {
return $arg['b'];
}
function fn4(&$arg) {
return $arg['b'];
}
$tmp=str_pad('a',200);
$tmp2=[];
for($i=0;$i<100;$i++) {
$tmp2[64+$i]=chr(64+$i);
}
$tmp2['b']='b';
// **********************************************************************************
$t1=microtime(true);
for($i=0;$i<$instances;$i++) {
$r=fn1($tmp);
}
$t2=microtime(true);
$table['byref string']=$t2-$t1;
// **********************************************************************************
$t1=microtime(true);
for($i=0;$i<$instances;$i++) {
$r=fn2($tmp);
}
$t2=microtime(true);
$table['byval string']=$t2-$t1;
// **********************************************************************************
$t1=microtime(true);
for($i=0;$i<$instances;$i++) {
$r=fn3($tmp2);
}
$t2=microtime(true);
$table['byref array']=$t2-$t1;
// **********************************************************************************
$t1=microtime(true);
for($i=0;$i<$instances;$i++) {
$r=fn4($tmp2);
}
$t2=microtime(true);
$table['byval array']=$t2-$t1;
echo \mapache_commons\Collection::generateTable($table);