$date = "2021-08-14 12:30:00"; echo formatDate($date, "Y-m-d"); // outputs: 2021-08-14 echo formatDate($date, "l, F jS Y"); // outputs: Saturday, August 14th 2021 echo formatDate($date, "g:i a"); // outputs: 12:30 pmBased on the naming convention, `formatDate` might belong to a package or library that helps with date and time manipulation in PHP, like Carbon or DateTime.