Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 532 Bytes

File metadata and controls

30 lines (23 loc) · 532 Bytes
title Benchmark code execution time
version 1.0.0
authors
ryan
tags
debug
time
performance
date 2015-01-17

Problem

You don’t know how performant certain code structures or selector usages are.

Solution

$t = Debug::timer();
// do some expensive code execution here
echo Debug::timer($t);

Resources