<?php
  $ev_date_time = get_field('start_ev_date_time');
  $eventDate = strtotime(get_field('start_ev_date_time'));
?> 
//MONTH
<?php echo date('M', $eventDate); ?>
//DATE
<?php echo date('d', $eventDate); ?>
				
<?php
  $ev_date_time = get_field('start_ev_date_time');
  $eventDate = strtotime(get_field('start_ev_date_time'));
?> 
//MONTH
<?php echo date('M', $eventDate); ?>
//DATE
<?php echo date('d', $eventDate); ?>