Is there any way to read/write the following data using php? And what is this called?

a:1:{s:13:"administrator";s:1:"1";}


Thanks!!

link|improve this question

50% accept rate
feedback

3 Answers

up vote 6 down vote accepted

Looks like data serialized by the PHP serialize() function. You can read it using unserialize().

$serialized = 'a:1:{s:13:"administrator";s:1:"1";}';
$data = unserialize($serialized);
print_r($data);
link|improve this answer
Thanks a lot!!! – Rik de Vos Aug 2 '11 at 20:24
feedback

try using unserialize() if that is a serialized data then that should unserialize it.

link|improve this answer
Thanks a lot!!! – Rik de Vos Aug 2 '11 at 20:24
feedback

Yep... That's serialized data. You can unserialize it for pure chechup purposes here - http://unserialize.net/serialize.

Other than that use unserialize() in your PHP code.

link|improve this answer
Thanks a lot!!! – Rik de Vos Aug 2 '11 at 20:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.