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!!
|
feedback
|
|
Looks like data serialized by the PHP serialize() function. You can read it using unserialize().
| |||
|
feedback
|
|
try using unserialize() if that is a serialized data then that should unserialize it. | |||
|
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. | |||
|
feedback
|