This is regarding Symfony 1.4, and probably all prior versions, running php 5.3, mysql 5.1.
If I store old dates in a database < 1970..., and I then retrieve them, they are automatically converted into an incorrect date.
Example table:
id, some_date
1, 1961-09-09
A quick example.
$record = MyTablePeer::retrieveByPK(1);
echo $record->getSomeDate();
//returns: 09/09/61
//Want it to return: 1961-09-09
Where is the output format controlled from? I need to get the entire date with the entire year stored in the database.