Skip to content

StringEpsilon/PhpSerializerNET

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 

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.