I have 3 variables $day, $month, $year each of them have the values what the users given to them.

I want to get his real Age too from these 3 variables.

For example the user enters this date for his birthdate in this format day,month,year:

04, 07, 1990 -> Now his age is 19


02, 07, 1990 -> Now his age is 20

I want to have it in this way.

I hope it's clear.

link|improve this question

Take a look at this related post: stackoverflow.com/questions/3051011/… – Babiker Jul 3 '10 at 18:23
feedback

2 Answers

up vote 1 down vote accepted

Could use something like this:

function age($bMonth,$bDay,$bYear) {
    list($cYear, $cMonth, $cDay) = explode("-", date("Y-m-d"));
    return ( ($cMonth >= $bMonth && $cDay >= $bDay) || ($cMonth > $bMonth) ) ? $cYear - $bYear : $cYear - $bYear - 1;
}
link|improve this answer
Maybe I'm doing something wrong but doesn't works – CIRK Jul 3 '10 at 18:07
Sorry, I modified it - should work now. – xil3 Jul 3 '10 at 18:28
Hmm as I see it works, but I test it a little before I accept it ;) – CIRK Jul 3 '10 at 18:32
Thanks very much!! – CIRK Jul 3 '10 at 18:38
feedback

You can use the datediff (custom) function. You need to subtract the birth date from current date.

Example:

echo 'Now his age is ' . datediff('yyyy', '9 July 1990', '3 June 2010', false);

Result:

Now his age is 19
link|improve this answer
1  
There is no 'DateDiff' function... You could instantiate DateTime twice (with the current date and birth date), and then call it's diff method. My point being, that you weren't very helpful/specific... – xil3 Jul 3 '10 at 18:03
@xil3: It is a custom function actually. – Sarfraz Jul 3 '10 at 18:05
1  
@xil3 You're right, there is no built-in function named DateDiff, that's why he linked to it. – Tim Cooper Jul 3 '10 at 18:05
I've copied the function but everything is commented out lol.. – CIRK Jul 3 '10 at 18:13
My bad - I stand corrected! Didn't notice it was a link haha... – xil3 Jul 3 '10 at 18:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.