I am analysing a system that persists HTML form input data like this:
a:2:{s:4:"form";a:1:{s:10:"labelWidth";i:150;}s:6:"fields";a:4:{s:15:"disp ...
Does anybody know if this is a known, documented format? Looks a bit like JSON.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It is the output of PHP’s serialize() function. JSON’s output looks quite different.
In PHP, you can decode the data by using unserialize().
In what language do you need to process that bit of data? Maybe I know of an implementation for it.