Determines whether a value is stored as binary data.
					
					isBinary(value)
					
						→ returns boolean
					
				
toBase64() returns base64 encoded data which is not binary
isBinary( toBase64(1) )Expected Result: false
toBinary() expects base64 encoded data and returns binary data
isBinary( toBinary(toBase64(1)) )Expected Result: true
Signup for cfbreak to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.