Skip to content

Instantly share code, notes, and snippets.

@maestroprog
maestroprog / func_speed.php
Last active May 28, 2017 15:13 — forked from stanlemon/func_speed.php
Test the speed of calling a function in various ways in PHP.
<?php
define('ITERATIONS', 10000000);
function accumulateResults(array &$results, $time, $name)
{
$arguments = substr($name, -1, 1);
$name = substr($name, 0, -2);
$results[$name][$arguments] = $time;
}