<?php
  $date = "03/08/2017";
  list($month, $day, $year) = split('[/]', $date);
  echo "Month: $month; Day: $day; Year: $year \n";
?>