Skip to content

Instantly share code, notes, and snippets.

@theclanks
Created May 16, 2014 12:57
Show Gist options
  • Save theclanks/fbc8805a4f369bffa742 to your computer and use it in GitHub Desktop.
Save theclanks/fbc8805a4f369bffa742 to your computer and use it in GitHub Desktop.
public function echo_memory_usage() {
$mem_usage = memory_get_usage(true);
if ($mem_usage < 1024)
echo $mem_usage." bytes";
elseif ($mem_usage < 1048576)
echo round($mem_usage/1024,2)." kb";
else
echo round($mem_usage/1048576,2)." mb";
echo "".PHP_EOL;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment