You are looking at historical revision 4769 of this page. It may differ significantly from its current revision.

Introduction

This egg provides serialization/unserialization of objects in a format compatible with PHP.

(More documentation coming soon.)

Examples

Serializing to PHP format

TODO

#;1> (use php-s11n)

#;2> (php-serialize #t)
"b:1;"

#;3> (php-serialize 3.1415)
"d:3.1415;"

#;4> (php-serialize (vector "a" "b" "c"))
"a:3:{i:0;s:1:\"a\";i:1;s:1:\"b\";i:2;s:1:\"c\";}"

#;5> (php-serialize '(first_name: "John" last_name: "Hacker"))
"a:2:{s:10:\"first_name\";s:4:\"John\";s:9:\"last_name\";s:6:\"Hacker\";}"

#;6> (php-serialize (void))
"N;"

Unserializing from PHP format

TODO

#;1> (use php-s11n)

#;2> (php-unserialize "a:3:{i:1;s:1:\"a\";i:2;s:1:\"b\";i:3;s:1:\"c\";}")
((1 . "a") (2 . "b") (3 . "c"))

#;3> (php-unserialize "a:3:{s:1:\"a\";s:6:\"orange\";s:1:\"b\";s:6:\"banana\";s:1:\"c\";s:5:\"apple\";}")
(("a" . "orange") ("b" . "banana") ("c" . "apple"))

#;4> (php-unserialize (php-serialize '#(1 2 3 5 8 13 21 34)))
((0 . 1) (1 . 2) (2 . 3) (3 . 5) (4 . 8) (5 . 13) (6 . 21) (7 . 34))

Author

Arto Bendiken

Requires

Serialization and unserialization

php-serialize

[procedure] (php-serialize VALUE)

php-unserialize

[procedure] (php-unserialize STRING)

Input and output

php-s11n-read

[procedure] (php-s11n-read [PORT])

php-s11n-write

[procedure] (php-s11n-write VALUE [PORT])

License

 Copyright (c) 2006-2007 Arto Bendiken.
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to
 deal in the Software without restriction, including without limitation the
 rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 sell copies of the Software, and to permit persons to whom the Software is
 furnished to do so, subject to the following conditions:
 
 The above copyright notice and this permission notice shall be included in
 all copies or substantial portions of the Software.
 
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 IN THE SOFTWARE.

Version history

Not released yed, but available from SVN.