My iphone app getting json data from php server.
2 basic questions, just to be sure :
1-In some of the json data fields, i see """, is this how json send Quotes,
and I need to clean it in the iphone app ? or there is elegant and clean way to skip this thing ?
2-The data is in UTF-8, I notice that if there is array in array, the UTF-8 is not display in the right way, and it’s show codes. Is this a bug in the JSON library ? or there is somthing to check with the server side ?
thanks in advance.
A literal quote anywhere in a JSON string should be
\"."""would be invalid JSON and a syntax error. Which “server” is producing this JSON text? The iphone, or PHP’s json_encode()?