Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save tamboer/5263301 to your computer and use it in GitHub Desktop.
Zend_View_Helper_FormatTime
<?php
class Zend_View_Helper_FormatTime extends Zend_View_Helper_Abstract {
function formatTime($time) {
if ($time)
return date('H:i', strtotime($time));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment