Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 15th, 2012  |  syntax: None  |  size: 0.18 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Hide hour (if no need) in gmdate() function PHP
  2. $time = time();
  3. $date_info = getdate( $time);
  4. $format = ( $date_info['minutes'] > 1) ? 'h.i.s' : 'i.s';
  5. echo gmdate( $format, $time);