<?php
class Testing
{
	function __destruct() {
		echo "Destruct";
	}
}

$t = array();
for ($i=0; $i<1000; $i++) {
	$t[] = new Testing();
}
