1<?php
2//This function convert date from any format to any format
3function reformatDate($date, $from_format = 'd/m/Y', $to_format = 'Y-m-d') {
4 $date_aux = date_create_from_format($from_format, $date);
5 return date_format($date_aux,$to_format);
6}
7
8//Calling Funciton
9reformatDate($date);
10?>