CFLib.org – Common Function Library Project

DogYearsToHumanYears(age)

Last updated February 14, 2002

Version: 1 | Requires: ColdFusion 5 | Library: UtilityLib

 
Rated 2 time(s). Average Rating: 3.0

Description:
This function translates a dogs age to human years. This function is merely an approximation and does not take into effect such factors as the dogs breed or size.

Return Values:

Example:

view plain print about
<cfset dog1 = 2>
<cfset dog2 = 5>
<cfset dog3 = 10>
<cfset dog4 = 12>

<cfoutput>
Dog 1 is #dog1# years old which is #DogYearsToHumanYears(dog1)# in human years.<br>
Dog 2 is #dog2# years old which is #DogYearsToHumanYears(dog2)# in human years.<br>
Dog 3 is #dog3# years old which is #DogYearsToHumanYears(dog3)# in human years.<br>
Dog 4 is #dog4# years old which is #DogYearsToHumanYears(dog4)# in human years.<br>
</cfoutput>

Parameters:

Name Description Required
age The age of the dog. Yes

Full UDF Source:

view plain print about
<cfscript>
/**
 * This UDF translates a dogs age to a humans age.
 * 
 * @param age      The age of the dog. 
 * @author David Fekke (david@fekke.com) 
 * @version 1, February 14, 2002 
 */

function DogYearsToHumanYears(DogAge) {
 return ((DogAge - 1)* 7) + 9;
}
</cfscript>
blog comments powered by Disqus

Search CFLib.org


Latest Additions

Dave Anderson Dave Anderson added
iniToStruct
20 day(s) ago

Dave Anderson Dave Anderson added
deDupeArray
20 day(s) ago

Richard Richard added
dice
22 day(s) ago

Isaac Dealey Isaac Dealey added
getRelative
a while ago

Top Rated

Darwan Leonardo Sitepu backupDatabase
Rated 5.0, 22 time(s)

Barney Boisvert indentXml
Rated 5.0, 10 time(s)

Kevin Pepperman generateSsccAsn
Rated 5.0, 4 time(s)

Raymond Camden highlightAndCrop
Rated 5.0, 4 time(s)

Created by Raymond Camden / Design by Justin Johnson