( thxer | 2013. 07. 29., h – 19:09 )

Futtasd le ezt a kódot:

<?php
for ($i=1; $i<64; $i++) {
$a = str_repeat("0", $i * 1024 * 1024);
echo memory_get_usage()."
";
unset($a);
}
?>