WDDXSerialize(input [, useTimeZoneInfo])
Last updated October 16, 2002
Version: 2 | Requires: ColdFusion MX | Library: CFMLLib
Description:
Allows for serialization to WDDX.
Return Values:
Returns a WDDX packet.
Example:
x = arrayNew(1);
x[1] = now();
x[2] = structNew();
x[2].foo = "goo";
packet = wddxSerialize(x);
writeOutput(left(htmlEditFormat(packet),100));
</cfscript>
Parameters:
| Name | Description | Required |
|---|---|---|
| input | The value to serialize. | Yes |
| useTimeZoneInfo | Indicates whether to output time-zone information when serializing CFML to WDDX. The default is yes. | No |
Full UDF Source:
<!---
Allows for serialization to WDDX.
Updated for CFMX var scope syntax.
@param input The value to serialize. (Required)
@param useTimeZoneInfo Indicates whether to output time-zone information when serializing CFML to WDDX. The default is yes. (Optional)
@return Returns a WDDX packet.
@author Raymond Camden (ray@camdenfamily.com)
@version 2, October 16, 2002
--->
<cffunction name="wddxSerialize" output="false" returnType="string">
<cfargument name="input" type="any" required="true">
<cfargument name="useTimeZoneInfo" type="boolean" required="false" default="true">
<cfset var output="">
<cfwddx action="cfml2wddx" input="#input#" output="output" useTimeZoneInfo="#useTimeZoneInfo#">
<cfreturn output>
</cffunction>
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)