国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發(fā) > PHP > 正文

PHP 年齡計算函數(shù)(精確到天)

2024-05-04 23:14:42
字體:
供稿:網(wǎng)友

復(fù)制代碼 代碼如下:


<?php
/**
* PHP 年齡計算函數(shù)
*
* 參數(shù)支持數(shù)組傳參和標準的 Mysql date 類型傳參
* params sample
* --------------------------------------------------
$birthArr = array(
'year' => '2000',
'month' => '11',
'day' => '3'
);
$birthStr = '2000-11-03';
* --------------------------------------------------
* );
* @author IT不倒翁 <itbudaoweng@gmail.com>
* @copyright (c) 2011,2012 Just Use It!
* @link IT不倒翁
* @param string|array $birthday
* @return number $age
*/
function getAge($birthday) {
$age = 0;
$year = $month = $day = 0;
if (is_array($birthday)) {
extract($birthday);
} else {
if (strpos($birthday, '-') !== false) {
list($year, $month, $day) = explode('-', $birthday);
$day = substr($day, 0, 2); //get the first two chars in case of '2000-11-03 12:12:00'
}
}
$age = date('Y') - $year;
if (date('m') < $month || (date('m') == $month && date('d') < $day)) $age--;
return $age;
}

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 邯郸县| 布尔津县| 时尚| 阜城县| 合山市| 胶州市| 英德市| 通河县| 隆林| 巨野县| 宝兴县| 大英县| 石泉县| 内乡县| 关岭| 天全县| 葫芦岛市| 新沂市| 名山县| 鸡东县| 西乌| 宿迁市| 武邑县| 淳化县| 甘孜县| 陵川县| 闽清县| 蒙城县| 三穗县| 静安区| 富川| 龙陵县| 陇南市| 宁河县| 龙游县| 崇礼县| 阿克陶县| 江北区| 缙云县| 洪雅县| 彭阳县|