Jump to content

Using unserialize()


tomhoad

Recommended Posts

Hi there.

 

I have some data in my database that is serialized.

 

e.g.

 

a:2:{i:0;s:9:"Test";i:1;s:4:"Another Test";}

 

I'm unsure how to use unserialize to convert it into a string in the format:

 

Test, Another Test

 

Currently I have:

 

					$radio_array = unserialize($radio);
					foreach ($radio_array as $i => $value) {
					print($radio_array[$i]);
					}	

 

But that throws errors. Any help appreciated, thanks.

 

Link to comment
https://forums.phpfreaks.com/topic/177109-using-unserialize/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.