Well, you could always write a function, e.g.
function formatTime($time) {
return substr($time, 0, 4) . '/'
. substr($time, 4, 2) . '/'
. substr($time, 6, 2) . ' '
. substr($time, 8, 2) . ':'
. substr($time, 10, 2) . ':'
. substr($time, 12, 2);
}
and pretend in front of your boss that it is neat.