You are viewing documentation for v1.1.x. Change

obfuscateParam()

Description

Obfuscates a value. Typically used for hiding primary key values when passed along in the URL.

Function Syntax

obfuscateParam(param)

Parameters

Parameter Type Required Default Description
param any Yes Value to obfuscate.

Examples

<!--- Obfuscate the primary key value `99` --->
<cfset newValue = obfuscateParam(99)>