Ver Mensaje Individual
  #5 (permalink)  
Antiguo 05/05/2008, 07:58
zsamer
 
Fecha de Ingreso: noviembre-2003
Mensajes: 798
Antigüedad: 20 años, 5 meses
Puntos: 8
Re: coleccion de objetos

Unejemplo de colección de objetos:
Código PHP:
        $collection = new SplObjectStorage();

        foreach(
$this->getStoreService()->getProducts($currentCategoryId) as $product){
            
$collection->attach(new Product($product));
        }

              
$this->view->assign('productList'$collection);