I've been killing myself with this database trying to extract the right data so I hope you can help me!
After trying a number of SQL editors (MySQL WorkBench, Sequel Pro and RazorSQL and PHPMyAdmin) I haven't been able to figure out how to decode this strange output of a BLOB column:
a:1:{i:0;a:3:{s:3:"src";s:30:"joburg-vic-falls-11-days-0.jpg";s:3:"alt";s:0:"";s:4:"desc";s:0:"";}}
The above is for an image as you can perhaps see by the slug.jpg. Can any of you tell me what code this is so I can decode it somewhere to make it useful?
I am moving a database from Contao to WP and having to manually piece it together. Decoding this will get me a lot further along. Thanks in advance for your help!
unserialize(). but the format's simple enough.a:1- array with 1 element,i:0integer with0value,s:3, string with 3 chars, etc...