I'm trying to serialize a Doctrine_query object in Symfony :
var_dump(serialize($this->pager->getQuery()));
The result is :
string(2) "N;"
What am I doing wrong?
|
I'm trying to serialize a Doctrine_query object in Symfony :
The result is :
What am I doing wrong?
| |||
|
feedback
|
|
You can not serialize every object in PHP. Objects themselves - by implementing the They return a And there are even some build-in classes that go even further than that. But it applies as well to user-defined classes and build-in classes: Some of them are not available for serialization. One example of a built-in class that can not be serialized in PHP is | ||||
|
feedback
|
var_dump($this->pager->getQuery());give? – Tomalak Nov 11 '10 at 16:12$this->pager->getQuery()is null... So that's what's being serialized... – ircmaxell Nov 11 '10 at 16:13