我搜索过这个,但没有在PHP中找到完美的功能.我想得到一个只用几个月计算人的年龄的
PHP函数.
例如:
less then one month old. 5 months old. 340 months old.
谢谢
使用PHP的
原文链接:https://www.f2er.com/php/137831.htmlDateInterval
(从5.3.0开始),这非常简单:
$birthday = new DateTime('1990-10-13'); $diff = $birthday->diff(new DateTime()); $months = $diff->format('%m') + 12 * $diff->format('%y');
现在$month将包含我所居住的月数.