Skip to content

Instantly share code, notes, and snippets.

View bartosz-maciaszek's full-sized avatar
💭
Does time also wonder where I went?

Bartosz Maciaszek bartosz-maciaszek

💭
Does time also wonder where I went?
View GitHub Profile
@bartosz-maciaszek
bartosz-maciaszek / call_user_func_benchmark.php
Created September 29, 2014 18:11
Direct call vs call_user_func() vs call_user_func_array()
<?php
class Benchmark
{
private $start = null;
public function __construct()
{
$this->start = microtime(true);
}