----- Original Message ----
> From: MEM <[email protected]>
> To: MEM <[email protected]>; Fernando Castillo Aparicio <[email protected]>; 
> Lester Caine <[email protected]>; [email protected]
> Sent: Fri, October 9, 2009 6:22:05 AM
> Subject: RE: [PHP] Newbie: Array of objects iteration
> 
> > Right now, I have something like this:
> > 
> > foreach ($objRecord as $record)
> > {
> >     //we will have a new line.
> >     $xls_file .="\n";
> > 
> > 
> >     foreach ($record as $column=>$value)
> >     {
> >         $xls_file .= $value."\t";
> >     }
> > 
> > }
> > 
> > The only thing I need now, is to put on top, the column names, and I
> > have myself a xls file. YUpii!!
> > 
> > I just need the column names... I will take a look on those functions
> > you have mentioned.
> > 
> > Thanks a lot, :)
> > Márcio
> 
> 
> Update:
> 
> "PDO::FETCH_OBJ
> Returns an anonymous object with property names that correspond to the
> column names returned in your result set."
> 
> I will give a shot on array_keys however, is there any method to access the
> PROPERTIES NAMES of a given object?
> 

MEM,

http://www.php.net/language.oop5.reflection


Regards,
Tommy


> 
> Regards,
> M.
> 
> 
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to