<?php
class rand{
public $array;
function rand(){
$this->array = array();
for ($i=1;$i<100000;$i++){
$this->array[$i] = md5(rand(0,9999999999999999));
}
}
}
$class = new rand();
echo "Before: ";
echo $first = memory_get_usage();
$class2 = $class;
$second = memory_get_usage();
echo "<br />After: ".$second."<br />Difference: ".($second-$first);