Skip to content

Instantly share code, notes, and snippets.

@dandelionmood
Created March 20, 2010 20:45
Show Gist options
  • Save dandelionmood/338890 to your computer and use it in GitHub Desktop.
Save dandelionmood/338890 to your computer and use it in GitHub Desktop.
<?php
function convert($size)
{
$unit=array('b','kb','mb','gb','tb','pb');
return @round($size/pow(1024,($i=floor(log($size,1024)))),2).' '.$unit[$i];
}
echo convert(memory_get_usage());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment