You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
352 B
PHP

<?php
namespace App\Lib;
use DateTime;
class Tools
{
//根据生日 获取年龄
public static function GetAge($birthday) {
$dob = new DateTime($birthday);
$now = new DateTime();
// 计算两个日期之间的差值
$interval = $now->diff($dob);
// 返回年龄
return $interval->y;
}
}