i've got an JSON String like this:
a: 2: {
s: 4: "unit";
s: 2: "h1";
s: 5: "value";
s: 40: "Mercedes-Benz A 45 AMG / 340 PS / Allrad";
}
Now, I don't know what to do with that because of the weird keys (i think in the 's' that means the length of the string).
If I use it like this nothing can parse it (with php json_decode or with obj-c SBJsonParser). Is there a way to generate html of that in php or how can i read only the last value?
Thanks in advance