You are viewing documentation for v1.0.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)>