PHP PHP script’s memory usage August 9, 2011 Pramod T P Leave a comment <?php echo “Before the loop – “.memory_get_usage() . “<br >”; for($i=0;$i<=100;$i++) { //echo $i;} echo “n After the loop – “.memory_get_usage() . “n”; ?>