|
Posted by Bart the bear on 08/08/07 09:24
Is there a smarter way for this:
$line_elems=array($new->machine,
$new->channel,
$new->time,
$new->bday,
$new->eday,
$new->name);
$line = join(':',$line_elems);
$line="$line\n";
Is there a function (cast?) to convert object to an array without
listing all the
members?
[Back to original message]
|