PHP Serialized array

  • Thread starter Thread starter Ivan Demkovitch
  • Start date Start date
I

Ivan Demkovitch

Hi!

I have cookie like this (from PHP portion of website):

{s:11:"autologinid";s:32:"0cc175b9c0f1b6a831c399e269772661";s:6:"userid";i:2
;}

I know this is PHP serialized array and wonder if there any way to read it
natively in .NET or I have to parse a string??

TIA
 
I dont expect you could read it - you will have to just split it using
string.split

--
Regards

John Timney (Microsoft ASP.NET MVP)
----------------------------------------------
<shameless_author_plug>
Professional .NET for Java Developers with C#
ISBN:1-861007-91-4
Professional Windows Forms
ISBN: 1861005547
Professional JSP 2nd Edition
ISBN: 1861004958
Professional JSP
ISBN: 1861003625
Beginning JSP Web Development
ISBN: 1861002092
</shameless_author_plug>
 
Back
Top