770 snippets from 1556 members, and growing!
|
login
|
join
about
bytebin
members
tags
snippets
join
Snippets
Submit a Snippet
Search Snippets
New Snippets
Top Snippets
Top Tags
PHP
(136)
JavaScript
(123)
Java
(66)
VBSCRIPT
(58)
String
(44)
CSS
(31)
CSharp
(28)
File
(28)
HTML
(27)
C
(24)
mysql
(24)
VB.NET
(24)
python
(24)
CPlusPlus
(23)
groovy
(23)
New Snippets
Very lightweight ...
AutoComplete plug...
AutoComplete plug...
Connection Java -...
View PostgreSql
Store Procedure
Pygame - Simple p...
Python - Anagram ...
Python - Anagram ...
Converter to bina...
Venture Capital Jobs
New Members
me
jamesmcm
Can
Kelmi
ysg
dannymo2
chorny
wallie
Hackdemian
impomatic
Top Members
dannyboy
sundaramkumar
mattrmiller
Pio
i_kenneth
ASmith
ctiggerf
sehrgut
bertheymans
SCoon
Home
/
Snippets
/
Fast Calculate age from timestamp
/
Comments
Fast Calculate age from timestamp
Snippet Menu
Revisions
Comments
Related Snippets
Add to Favorites
Email Snippet
Download Snippet
Print Snippet
Blog Snippet
snippet
|
revisions
|
comments
|
related
|
Add to Favorites
|
email
download
|
print
|
blog it
New Comment
Where would anyone...
Thu. Apr. 5th, 2007 7:11 AM
ushi
... use this anyways?
$datestamp = date("d-m-Y", $now);
list($current_day, $current_month,$current_year)= explode("-" , $datestamp);
list($birth_year, $birth_month, $birth_day) = explode("-" , date('Y-m-d',$birthday));
Why u didn't set the current date same way as the birthday date? ;)
<?php
function
age
(
$stamp
)
{
return
floor
(
(
(
$stamp
-
time
(
)
)
*
-1
)
/
60
/
60
/
24
/
365
)
;
}
?>
Note: This wouldn't result the exact age when close to birthday :) (leapyear)
Reply
New Comment
$datestamp = date("d-m-Y", $now);
list($current_day, $current_month,$current_year)= explode("-" , $datestamp);
list($birth_year, $birth_month, $birth_day) = explode("-" , date('Y-m-d',$birthday));
Why u didn't set the current date same way as the birthday date? ;)
<?php
function age($stamp) {
return floor((($stamp - time()) * -1) / 60 / 60 / 24 / 365);
}
?>