&amp json字符串中的特殊字符问题

I have an array of dictionary converted into JSON string like this,

 NSMutableArray *returnArray = [NSMutableArray new];

    NSMutableDictionary *temp1= [NSMutableDictionary new];
    [temp setObject:@"item1" forKey:@"notes"];
    NSMutableDictionary *temp2= [NSMutableDictionary new];
    [temp2 setObject:@"item & item2 " forKey:@"notes"];

    NSString *json = [self aryToJSONString:allSync];

json converter:

-(NSString *)aryToJSONString:(id) ary{

NSError *error; 
NSString *jsonString;
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:ary 
                                                   options:0 // Pass 0 if you don't care about the readability of the generated string
                                                     error:&error];

if (! jsonData) {
    NSLog(@"Got an error: %@", error);
} else {
    jsonString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
   }
    return jsonString;
}  

Converted JSON:

[{"notes":"item"},{"notes":"item1 & item2"}]

and then POST it to the server (PHP). The server receives unparsable json string like this,

[{\"notes\":\" item1 \"},{\"notes\":\"item1 ","item2\"}]":"

How can I handle &amp special character issue?

EDIT:

PHP Code:

 $json = $_REQUEST['json'];
       $json = stripslashes($json);
       $jsonArr = json_decode($json, true);

       while($item = array_shift($jsonArr))
       {
           foreach($item as $key=>$value)
           {
           }
       }

Try below code:

Pass JSON string to below method before posting to server.

-(NSString*)replaceSpecialCharsFromString:(NSString*)str
{
    str = [str stringByReplacingOccurrencesOfString:@"&" withString:@"&"];
    str = [str stringByReplacingOccurrencesOfString:@"<" withString:@"&lt;"];
    str = [str stringByReplacingOccurrencesOfString:@">" withString:@"&gt;"];
    return str;
}