日期的计算

<?php     $year=1985;     $month=11;     $day=13;     $birthday=mktime(0,0,0,$month,$day,$year);     $nowdate=mktime();     $ageunix=$nowdate-$birthday;     $age=floor($ageunix/(60*60*24*365));
相关文章
相关标签/搜索