forked from ricardobelo/php-framework-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
84 lines (74 loc) · 2.08 KB
/
index.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
<?php
Parse_Results: {
require __DIR__ . '/libs/parse_results.php';
$results = parse_results(__DIR__ . '/output/results.hello_world.log');
}
Load_Theme: {
$theme = isset($_GET['theme']) ? $_GET['theme'] : 'default';
if (! ctype_alnum($theme)) {
exit('Invalid theme');
}
if ($theme === 'default') {
require __DIR__ . '/libs/make_graph.php';
} else {
$file = __DIR__ . '/libs/' . $theme . '/make_graph.php';
if (is_readable($file)) {
require $file;
} else {
require __DIR__ . '/libs/make_graph.php';
}
}
}
// RPS Benchmark
list($chart_rpm, $div_rpm) = make_graph('rps', 'Throughput', 'requests per second');
// Memory Benchmark
list($chart_mem, $div_mem) = make_graph('memory', 'Memory', 'peak memory (MB)');
// Exec Time Benchmark
list($chart_time, $div_time) = make_graph('time', 'Exec Time', 'ms');
// Included Files
list($chart_file, $div_file) = make_graph('file', 'Included Files', 'count');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>PHP Framework Benchmark</title>
<script src="https://www.google.com/jsapi"></script>
<script>
<?php
echo $chart_rpm, $chart_mem, $chart_time, $chart_file;
?>
</script>
</head>
<body>
<h1>PHP Framework Benchmark</h1>
<h2>Hello World Benchmark</h2>
<div>
<?php
echo $div_rpm, $div_mem, $div_time, $div_file;
?>
</div>
<ul>
<?php
$url_file = __DIR__ . '/output/urls.log';
if (file_exists($url_file)) {
$urls = file($url_file);
foreach ($urls as $url) {
$parts = parse_url(trim($url));
$url = $parts['scheme'] . '://' . $_SERVER['HTTP_HOST'] . $parts['path'];
if ($parts['query']) {
$url .= '?' . $parts['query'];
}
echo '<li><a href="' . htmlspecialchars($url, ENT_QUOTES, 'UTF-8') .
'">' . htmlspecialchars($url, ENT_QUOTES, 'UTF-8') .
'</a></li>' . "\n";
}
}
?>
</ul>
<hr>
<footer>
<p style="text-align: right">This page is a part of <a href="https://github.com/kenjis/php-framework-benchmark">php-framework-benchmark</a>.</p>
</footer>
</body>
</html>