DogYearsToHumanYears(age)
Last updated February 14, 2002
Version: 1 | Requires: ColdFusion 5 | Library: UtilityLib
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:
<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:
<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>
Search CFLib.org
Latest Additions
Dave Anderson added
iniToStruct
20 day(s) ago
Dave Anderson added
deDupeArray
20 day(s) ago
Richard added
dice
22 day(s) ago
Isaac Dealey added
getRelative
a while ago
Top Rated
backupDatabase
Rated 5.0, 22 time(s)
indentXml
Rated 5.0, 10 time(s)
generateSsccAsn
Rated 5.0, 4 time(s)
highlightAndCrop
Rated 5.0, 4 time(s)