Skip to content

Instantly share code, notes, and snippets.

@tamboer
Created March 28, 2013 13:55
Show Gist options
  • Select an option

  • Save tamboer/5263294 to your computer and use it in GitHub Desktop.

Select an option

Save tamboer/5263294 to your computer and use it in GitHub Desktop.
Zend_View_Helper_FormatDate
<?php
class Zend_View_Helper_FormatDate extends Zend_View_Helper_Abstract {
public function formatDate($date) {
if ($date)
return date('d/m/Y', strtotime($date));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment