сколько дней до дня рождения php
function days_to_birthdate($birthdate){ $bd=explode('.',$birthdate); $bd=mktime(0,0,0,$bd[1],$bd[0],date('Y')+($bd[1].$bd[0]<=date('md'))); return ceil(($bd-time())/86400); }
function days_to_birthdate($birthdate){ $bd=explode('.',$birthdate); $bd=mktime(0,0,0,$bd[1],$bd[0],date('Y')+($bd[1].$bd[0]<=date('md'))); return ceil(($bd-time())/86400); }