<?php function Formatdate($rawdate,$format){ /* $rawdate - The Date which should be formatted... $format - The format string.... refer the Date function for format String */ $dateTime = new DateTime($rawdate); $formatted_date=date_format ( $dateTime, $format ); return $formatted_date; } ?>