-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbenchmark_const_variable_literal.php
56 lines (45 loc) · 1.45 KB
/
benchmark_const_variable_literal.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
<?php
declare(strict_types=1);
/** @noinspection AutoloadingIssuesInspection */
include "Collection.php";
$instances=200000;
const HELLO = 'HELLO WORLD';
for($s=0;$s<10;$s++) {
// **********************************************************************************
$t1 = microtime(true);
for ($i = 0; $i < $instances; $i++) {
if ($i === HELLO) {
echo "it is not possible";
}
}
$t2 = microtime(true);
$table[$s]['constant'] = $t2 - $t1;
// **********************************************************************************
$t1 = microtime(true);
$variable = 'HELL WORLD';
$str = '';
for ($i = 0; $i < $instances; $i++) {
if ($i === $variable) {
echo "it is not possible";
}
}
echo $str;
// note: $r=eval('ping("pong");'); return null
// note: $r=eval('return ping("pong");'); return 'pong'
$t2 = microtime(true);
$table[$s]['variable'] = $t2 - $t1;
// **********************************************************************************
$t1 = microtime(true);
$str = [];
for ($i = 0; $i < $instances; $i++) {
if ($i === 'HELLO WORLD') {
echo "it is not possible";
}
}
echo implode('', $str);
// note: $r=eval('ping("pong");'); return null
// note: $r=eval('return ping("pong");'); return 'pong'
$t2 = microtime(true);
$table[$s]['literal']= $t2 - $t1;
}
echo \mapache_commons\Collection::generateTable($table);