7 lines
133 B
PHP
7 lines
133 B
PHP
<?php
|
|
require_once __DIR__ . '/_init.php';
|
|
|
|
bench('Example name', 100000, function() {
|
|
// run something here
|
|
$i = 1 + 1;
|
|
});
|