up vote 0 down vote favorite
share [g+] share [fb]

Hi is possible automatically to format (using date()) all data from a datetime field in CakePHP? I'm thinking about using a callback function in the model but I don't know if I could filter fields coming from a datetime type.

Thanks in advance!

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

If it's something you just want to apply a single model you could use the afterFind and beforeSave callbacks to reformat the date.

If it's something you want to apply to many models you should create a Behaviour for it. You could use an array that tells it what date fields it should format.

link|improve this answer
feedback

I think I'm missing something in your question, but if you can get a date into a common string format, you can format it with PHP's date function and the strToTime function.

$date = 'January 27th, 2008'; //almost any format for dates in common usage
echo date('Y-m-d', strToTime($date));

//will print
2009-01-27
link|improve this answer
yes sorry it was my fault. what i meant was to automatically format all datetime fields to a specific format. – user133127 Dec 4 '09 at 18:17
feedback

If you don't feel like hacking CakePHP's codebase, why don't you just code a wrapper function for find inside your controller? You will have to stick to a naming convention to easily identify your datetime fields but hey naming conventions are good right?

Something like: http://pastebin.com/mbbe91fe

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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