I am working with serialized data from Wordpress database. Strings created with PHP serialize function and look something like this:
a:4:{s:6:"weight";s:2:"15";s:6:"length";s:1:"8";s:5:"width";s:1:"8";s:6:"height";s:2:"17";}
Is there a way to deserialize this in Groovy? or is this not a product of standardized serialization?
Thanks!