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

Untitled

By: a guest on May 2nd, 2012  |  syntax: None  |  size: 0.32 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. Can help me to get date helper for older PHP [closed]
  2. <update status>
  3.        
  4. if ( ! function_exists('date_create'))
  5. {
  6.     function date_create($date)
  7.     {
  8.         return strtotime($date);
  9.     }
  10. }
  11.  
  12. if ( ! function_exists('date_format'))
  13. {
  14.     function date_format($date,$format)
  15.     {
  16.         return date($format, $date);
  17.     }
  18. }