9

The goal is to unserialize a PHP serialized string and get sutable object in C#

Is there any way to make this possible in C#(.Net)?

To be more specific: We need to make an application which comunicates (Via HTTP) to specific website which returns the needed information. Fortunately/unfortunately we dont have permission to website so the data (array mostly) that is returned from website is PHP serialized.

hakre
  • 193,403
  • 52
  • 435
  • 836
George
  • 1,466
  • 3
  • 12
  • 30

2 Answers2

2

I suppose using JSON as an intermediary step could be useful.

Fabian Vilers
  • 2,892
  • 2
  • 24
  • 30
1

You should probably write it to XML or JSON. You can construct your C# object back from the XML

Edit: Looks like there is already a XML serializer for PHP

ram
  • 11,468
  • 16
  • 63
  • 89
  • Fortunately/unfortunately we dont have permission to website so the data (array mostly) that is returned from website is PHP serialized. – George Dec 16 '09 at 22:19