function getManNai($birth_year,$birth_month,$brith_day){
$birth_year = (int)$birth_year;
$birth_month = (int)$birth_month;
$brith_day = (int)$brith_day;
$now_year = date("Y");
$now_month = date("m");
$now_day = date("d");
if($birth_month < $now_month){
$age = $now_year - $birth_year;
}else if($birth_month == $now_month){
if($brith_day <= $now_day)
$age = $now_year - $birth_year;
else
$age = $now_year - $birth_year -1;
}else{
$age = $now_year - $birth_year-1;
}
return $age;
}
getManNai(1990,01,05);
'Dev Language > PHP' 카테고리의 다른 글
웹소스 FTP 파일 압축하기 (0) | 2016.10.05 |
---|---|
PHP 네이버블로그 원격 글쓰기 API 소스 (0) | 2016.07.12 |
PHP (및 기타 언어)로 일정주기로 실행(스케줄링) (0) | 2015.09.04 |
pclzip library 를 이용한 zip 압축,해제 (0) | 2015.07.10 |
PHP에서 암호화 encrypt 복호화 decrypt 해서 값을 넘기기 (0) | 2015.06.18 |