Skip to content

Instantly share code, notes, and snippets.

@ha1t
Last active August 29, 2015 13:57
Show Gist options
  • Save ha1t/9637526 to your computer and use it in GitHub Desktop.
Save ha1t/9637526 to your computer and use it in GitHub Desktop.
<?php
require_once 'Ubench.php';
function f_loop(array $items)
{
foreach ($items as $item) {
}
}
function le_loop(array $items)
{
while (list($key, $value) = each($items)) {
}
}
echo PHP_VERSION . PHP_EOL;
$items = range(0, 500000);
$bench = new Ubench;
$bench->start();
f_loop($items);
$bench->end();
echo 'Time: ' . $bench->getTime();
echo ' / MemPeak: ' . $bench->getMemoryPeak();
echo ' / MemUsage: ' . $bench->getMemoryUsage() . PHP_EOL;
$bench = new Ubench;
$bench->start();
le_loop($items);
$bench->end();
echo 'Time: ' . $bench->getTime();
echo ' / MemPeak: ' . $bench->getMemoryPeak();
echo ' / MemUsage: ' . $bench->getMemoryUsage() . PHP_EOL;
5.3.26
Time: 123ms / MemPeak: 116.00Mb / MemUsage: 70.25Mb
Time: 326ms / MemPeak: 116.00Mb / MemUsage: 70.50Mb
<?php
/*
* Copyright (c) 2012 Jeremy Perret
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is furnished
* to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
class Ubench
{
protected $start_time;
protected $end_time;
protected $memory_usage;
/**
* Sets start microtime
*
* @return void
*/
public function start()
{
$this->start_time = microtime(true);
}
/**
* Sets end microtime
*
* @return void
*/
public function end()
{
$this->end_time = microtime(true);
$this->memory_usage = memory_get_usage(true);
}
/**
* Returns the elapsed time, readable or not
*
* @param boolean $readable Whether the result must be human readable
* @param string $format The format to display (printf format)
* @return string|float
*/
public function getTime($raw = false, $format = null)
{
$elapsed = $this->end_time - $this->start_time;
return $raw ? $elapsed : self::readableElapsedTime($elapsed, $format);
}
/**
* Returns the memory usage at the end checkpoint
*
* @param boolean $readable Whether the result must be human readable
* @param string $format The format to display (printf format)
* @return string|float
*/
public function getMemoryUsage($raw = false, $format = null)
{
return $raw ? $this->memory_usage : self::readableSize($this->memory_usage, $format);
}
/**
* Returns the memory peak, readable or not
*
* @param boolean $readable Whether the result must be human readable
* @param string $format The format to display (printf format)
* @return string|float
*/
public function getMemoryPeak($raw = false, $format = null)
{
$memory = memory_get_peak_usage(true);
return $raw ? $memory : self::readableSize($memory, $format);
}
/**
* Returns a human readable memory size
*
* @param int $size
* @param string $format The format to display (printf format)
* @param int $round
* @return string
*/
public static function readableSize($size, $format = null, $round = 3)
{
$mod = 1024;
if (is_null($format)) {
$format = '%.2f%s';
}
$units = explode(' ','B Kb Mb Gb Tb');
for ($i = 0; $size > $mod; $i++) {
$size /= $mod;
}
if (0 === $i) {
$format = preg_replace('/(%.[\d]+f)/', '%d', $format);
}
return sprintf($format, round($size, $round), $units[$i]);
}
/**
* Returns a human readable elapsed time
*
* @param float $microtime
* @param string $format The format to display (printf format)
* @return string
*/
public static function readableElapsedTime($microtime, $format = null, $round = 3)
{
if (is_null($format)) {
$format = '%.3f%s';
}
if ($microtime >= 1) {
$unit = 's';
$time = round($microtime, $round);
} else {
$unit = 'ms';
$time = round($microtime*1000);
$format = preg_replace('/(%.[\d]+f)/', '%d', $format);
}
return sprintf($format, $time, $unit);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment