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
/
CalcAge
/
Comments
CalcAge
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
add PHP as a tag
Tue. Nov. 28th, 2006 4:20 PM
bertheymans
Thanks for sharing, you should at least add the tag PHP if you submit a PHP snippet, there is no other way to tell what language the code is written in.
Reply
Suggestion
Sat. Nov. 18th, 2006 3:34 AM
Nico
The delimiter could be a default argumet, so it would work with any format, such as dd/mm/yyyy or dd-mm-yyyy.
function
CalcAge
(
$birthday
,
$delimiter
=
'.'
)
{
//Explode the Birthday and create the Array bDay.
$bDay
=
explode
(
$delimiter
,
$birthday
)
;
...
echo
CalcAge
(
'dd.mm.yyy'
)
;
echo
CalcAge
(
'dd-mm-yyy'
,
'-'
)
;
echo
CalcAge
(
'dd/mm/yyy'
,
'/'
)
;
Reply
New Comment
function CalcAge($birthday, $delimiter = '.'){
//Explode the Birthday and create the Array bDay.
$bDay = explode($delimiter, $birthday);
...
echo CalcAge('dd.mm.yyy');
echo CalcAge('dd-mm-yyy', '-');
echo CalcAge('dd/mm/yyy', '/');