<?php function build_array() { for ($i=0;$i<10000;$i++){ $a[$i]=$i; } $i=null; return $a; } echo memory_get_usage(false), PHP_EOL; $a = build_array(); echo memory_get_usage(false), PHP_EOL; unset($a); echo memory_get_usage(false), PHP_EOL;
You have javascript disabled. You will not be able to edit any code.