Advertisement
reenadak

format date

Feb 20th, 2018
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1.     /*
  2.     - Format Date (String)
  3.     - Formats string-time into the human readable format.
  4.    
  5.     $time     - The string-time to convert into human readable time.
  6.                 Recommended format is YYYY-MM-DD HH:MM:SS
  7.     */
  8.    
  9.     public function formatDate($time, $dateOnly = false) {
  10.         $unixTime = strtotime($time);
  11.         return $this->formatDateUnix($unixTime, $dateOnly);
  12.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement