Hi,
I still need it help with this issue please.
Thank.
In Gravity forms the format is DD/MM/YYYY
In ACF is d/m/Y
I’m trying now this code:
$date = get_field(‘fecha_nacimiento_obituario_gratis’);
$date1 = get_field(‘fecha_def_obituarios_gratis’);
$date_format = DateTime::createFromFormat(‘d/m/Y’, $date);
$date_format1 = DateTime::createFromFormat(‘d/m/Y’, $date1);
$birthday = new DateTime($date_format);
$decease = new DateTime($date_format1);
$interval = $birthday->diff($decease);
echo $interval->y.’ AƱos’;
But isn’t works
thanks!