nezzario

Get Memory Usage in Kilobyte

Sep 7th, 2013
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.10 KB | None | 0 0
  1. <?php
  2.     function memory_usage_kb() {
  3.         return round((memory_get_usage(1) / 1024), 2) . ' KiB';
  4.     }
Advertisement
Add Comment
Please, Sign In to add comment