function cmfcCalendarV1Thai::timestampToStr in Calendar Systems 6
Same name and namespace in other branches
- 8 calendar/v1/calendarSystems/thai.class.inc.php \cmfcCalendarV1Thai::timestampToStr()
- 8.2 calendar/v1/calendarSystems/thai.class.inc.php \cmfcCalendarV1Thai::timestampToStr()
- 7 calendar/v1/calendarSystems/thai.class.inc.php \cmfcCalendarV1Thai::timestampToStr()
- 7.2 calendar/v1/calendarSystems/thai.class.inc.php \cmfcCalendarV1Thai::timestampToStr()
Overrides cmfcCalendarV1::timestampToStr
File
- calendar/v1/ calendarSystems/ thai.class.inc.php, line 58 
Class
Code
function timestampToStr($format, $timestamp = NULL) {
  if (is_null($timestamp)) {
    $timestamp = time();
    //$this->phpTime();
  }
  return $this
    ->date($format, $timestamp);
}