Answers for "get age in months php"

PHP
0

get age in months php

$interval = date_diff(date_create(), date_create('2008-01-01 10:30:00'));
echo $interval->format("You are  %Y Year, %M Months, %d Days, %H Hours, %i Minutes, %s Seconds Old");
Posted by: Guest on April-29-2021

Browse Popular Code Answers by Language