Well i got this serialized PHP string: a:1:{s:10:"max_photos";i:10;} is there a way to unserialize it but with JavaScript?
1 Answer
You could use the php.js library, or simply replicate the relevant parts, although you should probably be using json_encode() as Pekka mentioned.
json_encode()which both languages can deal with natively