if (($json=file_get_contents($_FILES["file_upload"]["tmp_name"]))) {
//$json='{"a":1,"b":2,"c":3,"d":4,"e":5}';
$content=json_decode($json,TRUE);
}
I upload a file and then read it in PHP. THe problem I get NULL returned from json_decode, the json is valid though, because when I try to decode the same JSON from a string it decodes fine. Any ideas what might be wrong.
I have figured out that I get three � at the beggining of the string. So I do a substr for now, but what is this?

echo $jsonto verify it's reading the file properly – Aaron W. Jan 8 at 11:58json_decode()failed? You can usejson_last_error()to find out more information about the error. – SDC Jan 8 at 12:04