另一种计算年龄的方法,给定MySQL日期格式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了另一种计算年龄的方法,给定MySQL日期格式相关的知识,希望对你有一定的参考价值。
function calculateAge ($birthdate) { if (false === $bdt || -1 === $bdt) { return 0; } $nYear = $todayDateParts['year'] - $birthDateParts['year']; $nMonth = $todayDateParts['mon'] - $birthDateParts['mon']; if ($nMonth < 1) { if ($nMonth == 0) { $nDay = $todayDateParts['mday'] - $birthDateParts['mday']; return ($nDay < 0) ? ($nYear - 1) : $nYear; } return ($nYear - 1); } return $nYear; }
以上是关于另一种计算年龄的方法,给定MySQL日期格式的主要内容,如果未能解决你的问题,请参考以下文章