CFLib.org – Common Function Library Project

WDDXSerialize(input [, useTimeZoneInfo])

Last updated October 16, 2002

Version: 2 | Requires: ColdFusion MX | Library: CFMLLib

 
Rated 2 time(s). Average Rating: 5.0

Description:
Allows for serialization to WDDX.

Return Values:
Returns a WDDX packet.

Example:

view plain print about
<cfscript>
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:

view plain print about
<!---
 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>
blog comments powered by Disqus

Search CFLib.org


Latest Additions

Dave Anderson Dave Anderson added
iniToStruct
20 day(s) ago

Dave Anderson Dave Anderson added
deDupeArray
20 day(s) ago

Richard Richard added
dice
22 day(s) ago

Isaac Dealey Isaac Dealey added
getRelative
a while ago

Top Rated

Darwan Leonardo Sitepu backupDatabase
Rated 5.0, 22 time(s)

Barney Boisvert indentXml
Rated 5.0, 10 time(s)

Kevin Pepperman generateSsccAsn
Rated 5.0, 4 time(s)

Raymond Camden highlightAndCrop
Rated 5.0, 4 time(s)

Created by Raymond Camden / Design by Justin Johnson