I am working on a Coldfusion project where I need to get some information from a wordpress-based database. Some of the information I need is a serialized array stored in the wp_options table. I cannot figure out how to deserialize array data in Coldfusion.
I am currently using the dev version of Coldfusion 8. I cannot upgrade to Coldfusion 9 since my application runs on Coldfusion 8
I managed to find this link http://www.cfinsider.com/index.cfm/2010/5/4/Serializing--Deserializing-in-ColdFusion-9 , which talks about CFC deserialization, but it doesn't seem to work to the array that I am passing.
Here is an example of the data I'm trying to execute deserialze
a:2:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}
Any help would be great.
source share