index/bench/example.php

8 lines
133 B
PHP
Raw Normal View History

2022-09-13 13:13:11 +00:00
<?php
require_once __DIR__ . '/_init.php';
bench('Example name', 100000, function() {
// run something here
$i = 1 + 1;
});