This is a .NET library for working with the PHP serialization format.
Usage is rather simple:
using PhpSerializerNET;
string serializedData = PhpSerialization.Serialize(myObject);
and
using PhpSerializerNET;
object myObject = PhpSerialization.Deserialize(serializedData);
Detailed documentation can be found here - Work in Progress.
See https://github.com/StringEpsilon/PhpSerializerNET/milestone/1
I'm working with some legacy project that uses the format and the only other implementation of a serializer/deserializer I found had no license attached and I needed something GPL compatible. So wrote this one from scratch.
This project is licenced under the MPL 2.0.