以下の公式で簡単に年齢計算ができるそうです。
<?php $today = date('Ymd'); $birthday = '19810203'; // yyyymmdd echo (int)(($today - $birthday) / 10000); ?>