Skip to content

StringEpsilon/PhpSerializerNET

Repository files navigation

Nuget GitHub Azure DevOps builds Build Status


PhpSerializerNET

This is a .NET library for working with the PHP serialization format.

Usage is rather simple:

Serializing

using PhpSerializerNET;

string serializedData = PhpSerialization.Serialize(myObject);

and Deserializing

using PhpSerializerNET;

object myObject = PhpSerialization.Deserialize(serializedData);

Detailed documentation can be found here.

Changelog

Detailed list of changes for each version since initial release here..

Why?

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.

License

This project is licenced under the MPL 2.0.