<?php $fmt = new IntlDateFormatter('de_DE', null, null); $fmt->setPattern('M-dd-yy hh:mm:ss'); $log_time = "Mai-05-20 17:22:36"; $unix_time = $fmt->parse($log_time); echo date('r', $unix_time);