Ver Mensaje Individual
  #8 (permalink)  
Antiguo 05/05/2008, 10:03
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 7 meses
Puntos: 2135
Re: coleccion de objetos

Código PHP:
class Collection {
       private 
$collection = array();
       public 
addToCollection$object ) {
                
$this->collection[] = $object;
       }
}

$coll = new Collection();
while( 
$i 10 ) {
      
$obj = new StdObject();
      
$coll->addToCollection($obj);
      
$i++;

Saludos.