Skip to content

Instantly share code, notes, and snippets.

@scodx
Created April 3, 2012 23:55
Show Gist options
  • Save scodx/2296457 to your computer and use it in GitHub Desktop.
Save scodx/2296457 to your computer and use it in GitHub Desktop.
memoria usada en un request de php :)
<?php
function _mem($val = null)
{
$val = ($val) ? $val : memory_get_peak_usage(true)
$unit=array('B','KB','MB','GB','TB','PB');
return @round($val/pow(1024,($i=floor(log($val,1024)))),2).' '.$unit[$i];
}
echo _mem();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment