Search code examples
phpperlserializationstorable

Can a PHP script unserialize a Storable file created with Perl?


Can a PHP script unserialize a Storable file created with Perl?


Solution

  • No, but you can dump PHP-readable data from Perl with PHP::Serialization. You also might want to pick something more standard, like YAML or JSON. Pretty much any language can understand those.