public
Description: Python module to serialize variables to the native PHP serialization format
Homepage: http://www.toosweettobesour.com/
Clone URL: git://github.com/dcousineau/phpserialize.git
name age message
file LICENSE Loading commit data...
file README
file phpserialize.py
file test.php
To test the validity of outputs, execute test.php by running:
  php test.php

You will notice that dictionaries may be a bit awkward. Python does not keep dictionaries in the same order in which 
they were added where as PHP does. PHP also only allows integers and strings as dicionary keys. Decimals, booleans, and 
nulls are automatically converted to their integer equivalent and everything else throws a fatal error.

TODO:
  - Add unserialize
  - Work on object serialization