示例#1
0
 function timeanddate($ts, $adj = false, $format = false, $timecorrection = false)
 {
     $format = $this->dateFormat($format);
     if ($format == MW_DATE_ISO) {
         return parent::timeanddate($ts, $adj, $format, $timecorrection);
     } else {
         return $this->date($ts, $adj, $format, $timecorrection) . " kl." . $this->time($ts, $adj, $format, $timecorrection);
     }
 }