這篇文章主要介紹了關於php根居日期轉換成年齡的實現,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
/* * @param cheack age */ function howOld($birth) { $birthday = strtotime($birth);//int strtotime ( string $time [, int $now ] ) $year = date('Y', $birthday); if(($month = (date('m') - date('m', $birthday))) < 0){ $year++; }else if ($month == 0 && date('d') - date('d', $birthday) < 0){ $year++; } return date('Y') - $year; }
$data["birthday"] = $this->howOld($birthday); var_dump($data["birthday"]);
#以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網!
相關推薦:
#以上是php根據日期轉換成年齡的實現的詳細內容。更多資訊請關注PHP中文網其他相關文章!