I am trying to convert a date from yyyy-mm-dd to dd-mm-yyyy (but not in SQL); however I don\'t know how the date function requires a timestamp, and
yyyy-mm-dd
dd-mm-yyyy
Use date_create and date_format
date_create
date_format
Try this.
function formatDate($input, $output){ $inputdate = date_create($input); $output = date_format($inputdate, $output); return $output; }