<?php date_default_timezone_set('Europe/London'); $date = new DateTime(); $A = $date->format('Y-m-d H:i:s'); $date->modify("+64 minutes"); $B = $date->format('Y-m-d H:i:s'); echo date('h:i', strtotime($B) - strtotime($A));
You have javascript disabled. You will not be able to edit any code.