bitpiston / oyster

A Perl web application framework.
Other
3 stars 1 forks source link

serialization library #36

Open einkoro opened 12 years ago

einkoro commented 12 years ago

Implement serialize and unserialize subroutines loosely based on the PHP serialization format:

Undef    N;
Scalar   s:12:"Hello world!"         s:$length:"$data";
Array    a:1:{s:5:"value"}           a:$count:{$value};
Hash     h:{s:3:"key";s:5:"value"}   h:{$key;$value};