years since

<?php
$now = time(); // or your date as well
$your_date = strtotime("1952-04-25");
$datediff = $now - $your_date;

echo round($datediff / (365 * 60 * 60 * 24));
?>
*

73