<?php date_default_timezone_set('Europe/Berlin'); $birthday = new DateTime('1990-09-23 22:09'); $today = new DateTime('2013-01-24 21:00'); $today->add(new DateInterval('PT1H')); $age = $birthday->diff($today, true); var_dump($age->h);
You have javascript disabled. You will not be able to edit any code.