php file_get_contents json去除换行符 返回null错误的原因

$str=file_get_contents(C("WEB_NAME")."/Public/Uploads/testdata.json");
      //去除换行符
      $str=str_replace(PHP_EOL,'',$str);
      $d=json_decode($str,true);
      if(!$d){
              //如果返回null,有可能是原json对象或数组结尾是逗号,这在json是错误语法
        $this->sendmsg("","请注意原json格式是否正确",1);
      }
      return $d;