Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
s:17:"thumbnail";
s:1:"1";
a:0:{}
a:9:{s:5:"title";s:2:"-5";s:10:"body_field";s:1:"0";s:20:"revision_information";s:1:"3";s:6:"author";s:1:"2";s:7:"options";s:1:"4";s:4:"menu";s:2:"-1";s:4:"path";s:1:"5";s:12:"image_attach";s:2:"-4";s:13:"path_redirect";s:1:"6";}

What is the name of this notation? Who is responsible for its standardization?

share|improve this question

2 Answers

up vote 8 down vote accepted

It is the PHP function serialize called internally by drupal_write_record that is responsible for this notation.


Per line:

  • the first part ("s" or "a" in your example) is the type ("s" is string, "a" is array)

  • the second part is the length (however "thumbnail" is only 9 chars, I wonder why it says s:17, there are probably extra empty chars)

  • the third part is the value as string (or as object if it's an array or an object)

share|improve this answer
Is it accepted as standard like JSON? – Shuaib Nawaz Dec 3 '10 at 15:41
If you are only using PHP, it is a de-facto standard because "serialize" is such a widely-used function. On the other hand, I never encountered this syntax anywhere else (though I have seen java classes that can read such PHP-serialized data), so I don't know why historically the PHP makers chose this syntax, it's not a famous standard like JSON as far as I know. – wildpeaks Dec 3 '10 at 16:08

More specifically, the serialize function is actually called internally by Drupal using the schema API automatically. A field can be set as "serialized" and Drupal will internally handle the conversions of arrays and objects.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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