<?php# object oriented$from = new DateTime('1972-12-11');$to = new DateTime('today');echo $from->diff($to)->y, "\n";?>