forked from nice-php/benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.php
65 lines (51 loc) · 1.41 KB
/
example.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
<?php
/*
* Copyright (c) Tyler Sommer
*
* For the full copyright and license information, please view the LICENSE file
* that was distributed with this source code.
*/
use Nice\Benchmark\Benchmark;
use Nice\Benchmark\BenchmarkCollection;
require __DIR__ . '/../vendor/autoload.php';
/**
* A string matching benchmark
*
* @return Benchmark
*/
function setupStringBenchmark()
{
$benchmark = new Benchmark(100000, 'String matching');
$benchmark->register('preg_match', function() {
assert(preg_match('/^test/', 'testing'));
});
$benchmark->register('strpos', function() {
assert(strpos('testing', 'test') === 0);
});
return $benchmark;
}
/**
* A foreach benchmark
*
* @return Benchmark
*/
function setupForeachBenchmark()
{
$arr = range(1, 10000);
$benchmark = new Benchmark(10000, 'foreach');
$benchmark->register('foreach with value', function() use ($arr) {
foreach ($arr as $value) {
}
});
$benchmark->register('foreach with key, value', function() use ($arr) {
foreach ($arr as $key => $value) {
}
});
return $benchmark;
}
// Setup a bunch of benchmarks
$collection = new BenchmarkCollection();
$collection->addBenchmark(setupStringBenchmark());
$collection->addBenchmark(setupForeachBenchmark());
// Execute all the benchmarks in the collection
$collection->execute();