Is there a trick that I get that array just as one array with elements
instead of sub-arrays?
I mean instead of this:
Array (
[0] => Array (
[0] => Array(
[id] => 1
[clientId] => 1
[orderId] => 3
[productId] => 1
)
[optVar1] => foo
)
)
I get something like this:
Array (
[0] => Array (
[0] => Array(
[id] => 1
[clientId] => 1
[orderId] => 3
[productId] => 1
[optVar1] => foo
)
)
)
Is it possible?
--
You received this message because you are subscribed to the Google Groups
"doctrine-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/doctrine-user.
For more options, visit https://groups.google.com/groups/opt_out.