Miscellaneous
obfuscateParam()
Signature
Section titled “Signature”obfuscateParam() — returns any
Description
Section titled “Description”Obfuscates a value. Typically used for hiding primary key values when passed along in the URL.
Parameters
Section titled “Parameters”| Name | Type | Required | Default | Description |
|---|---|---|---|---|
param | any | yes | — | Value to obfuscate. |
Examples
Section titled “Examples”obfuscateParam(param) <!--- Obfuscate the primary key value `99` ---> <cfset newValue = obfuscateParam(99)>