Possible Duplicate:
What format is this?
How do i retrieve this one. I’m not sure if this is json or whatever this is called.
a:2:{i:0;s:13:"test@test.com";i:1;s:11:"yes@yes.com";}
I want to get the test@test.com and the yes@yes.com. How would I do that one?
This are dynamic values so it is not always like “test@test.com” or “yes@yes.com”
Thanks, anyhelp would be greatly appreciated and rewarded. 🙂
This content is serialized, likely using
serialize, therefore you can “unwrap” it usingunserialize(don’t know how de- serialize didn’t come to mind in development, but hey):