根据出生日期计算年龄
提供的 MySQL 查询获取用户详细信息,包括出生日期。为了确定他们的年龄,我们可以利用各种
PHP
程序
$dob = "1999-03-15"; $age = date_diff(date_create($dob), date_create('today'))->y;
面向对象
$dob = new DateTime("1999-03-15"); $today = new DateTime('today'); $age = $dob->diff($today)->y;
MySQL
SELECT TIMESTAMPDIFF(YEAR, '1999-03-15', CURDATE()) AS age
以上是如何使用 PHP 和 MySQL 从出生日期计算年龄?的详细内容。更多信息请关注PHP中文网其他相关文章!