date picker checker

Posted on:

$date = DateTime::createFromFormat(‘Y_m_d’, get_field(‘date_picker’));
echo $date->format(‘d-m-Y’);

/*
* Format examples
*/

$js = “dd/mm/yy”
$php = “d/m/Y”

$js = “yy_m_d”
$php = “Y_n_j”

?>