2019-07-09 14:27:13 +00:00
|
|
|
<p>Let's do some math.</p>
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
<?php
|
2020-11-13 10:26:44 +00:00
|
|
|
require '/var/xhgui/vendor/autoload.php';
|
|
|
|
$config = include '/var/xhgui/config/config.php';
|
|
|
|
$profiler = new \Xhgui\Profiler\Profiler($config);
|
|
|
|
$profiler->start();
|
2019-07-09 14:27:13 +00:00
|
|
|
|
|
|
|
for ($i = 0; $i < 10; $i++) {
|
|
|
|
echo sprintf("<li>%s * 5 = %s</li>", $i, $i*5);
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</ul>
|