I am trying to understand why CakePHP returns arrays like the following even when recursive=-1 and if there is a way to stop this from happening?

array
(
    [0] => array
        (
            [User] => array
                (
                    ... etc...
                )
        )
)

Thanks,

link|improve this question

is this from find(all)? what query could did you run? – mark Jan 29 at 18:37
Your question is unclear. This is the standard find('all') format --a numeric array of: model alias => model fields. What's wrong? – ori Jan 29 at 22:11
feedback

1 Answer

up vote 1 down vote accepted

Recursive -1, reads the model without any relation.

Now brings this Array, because you do a "find (all)", you should do a "find (first)".

link|improve this answer
AWESOME, find('first') works great. Thanks alot, I missed that.... – CaboONE Jan 29 at 23:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.