$deserialize

Deserializes a serialized string. Serialized structurs like arrays or hash tables will remain.
Syntax
    $deserialize
DocumentationDeserializes a serialized string. Serialized structurs like arrays or hash tables will remain.

    Paramter:
      This function does not take any parameters.
    Returns:
      It returns the serialized string.
Examples
$// set hash $set{shippingInformation(address)}{Konrad Zuse 15} $set{shippingInformation(name)}{SITEFORUM Group} $set{shippingInformation(city)}{Erfurt} $set{shippingInformation(zip)}{99099} $set{shippingInformation(country)}{Germany} $// set hash in local variable $set{myAddress}{$get{shippingInformation}} $// serialize local variable to save them into db or keep it in a session or anything else $set{serializedString}{$serialize{$get{myAddress}}} $// deserialize serialized string, the structure remains $set{deserializedString}{$deserialize{$get{serializedString}}} $get{deserializedString(name)} $get{deserializedString(city)}
GroupSpecial
Minimum required transaction-mode:NONE
Required scripting permission of the developerPERMISSION_FL_BASIC
Minimum parameters1
Maximum parameters 1