Using the strtotime() function combined with date() you can parse different English text descriptions to dates:
// Gets the current date
echo date("m/d/Y", strtotime("now")), "\n"; // prints the current date
echo date("m/d/Y", strtotime("10 September 2...