Home  >  Article  >  Backend Development  >  php 依据出生日期生成年龄

php 依据出生日期生成年龄

WBOY
WBOYOriginal
2016-06-13 13:16:041031browse

php 根据出生日期生成年龄

<?php $birthday = '1985-02-01';
$age = date('Y', time()) - date('Y', strtotime($birthday)) - 1;
if (date('m', time()) == date('m', strtotime($birthday))){

	if (date('d', time()) > date('d', strtotime($birthday))){
	$age++;
	}
}elseif (date('m', time()) > date('m', strtotime($birthday))){
	$age++;
}
echo $age;


?>


mysql 当前时间-n年计算
select date_add(curdate(), interval -1 year);
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn