I am using Doctrine 1.2, how could I get the query object into json / array format?
$user = Doctrine_Query::create()
->select('u.id, u.username, u.firstname, u.lastname')
->from('User u')
->orderby('u.id')
->execute();
|
I am using Doctrine 1.2, how could I get the query object into json / array format?
| ||||
|
feedback
|
|
A solution might be to use the Something like this, I suppose :
(Not tested, but it should not be too far from working...) | |||||||
feedback
|
I don't know why the toArray() will give the other field in the table, e.g. it will have the "password" field, it seems fetchArray() can give me the correct fields in query. toArray()
fetchArray()
| |||
|
feedback
|
|
Trouble with $record->exportTo('json') is that it will export all record fields. And in most cases it's not a desirable behaviour (for e.g. when this piece of json should be passed to browser). One way to limit the scope of export is to specify fields in DQL select:
$user_json then will have something like this:
So it does not expose "password" field value but does expose underlying database structure. Again, might not be what we want. What I do is specify fields in DQL select + fetch as array then json encode:
In this case json will look like something like:
| |||
|
feedback
|