<?php class test{ public function out(){ echo '<br />Текст<br />'; } } for ($i=0; $i<5; $i++){ $n = new test(); $n->out(); } ?>
<?php class test{ public function out(){ echo '<br />Текст<br />'; } } for($i=0; $i<5; $i++){ ${'n'.$i} = new test(); ${'n'.$i}->out(); } ?>