<?php
if (($unixtimestamp = strtotime(get_field('time'))) === FALSE) {
$our_time = get_field('time');
} else {
$dateformatstring = "d F";
$unixtimestamp = strtotime(get_field('time'));
echo $our_time = date_i18n($dateformatstring, $unixtimestamp);
}
?>