<?php
$date = '01/11/2000 12:30';
$champsDate = date_parse_from_format('d/m/Y H:i', $date);
var_dump($champsDate);
?>
