Home >Backend Development >PHP Tutorial >javascript - json带bom头如何处理。

javascript - json带bom头如何处理。

WBOY
WBOYOriginal
2016-06-06 20:14:381454browse

文件都是utf8+无BOM头格式
但是返回的json加了红点说明有bom头
该如何擦除bom头
javascript - json带bom头如何处理。

回复内容:

文件都是utf8+无BOM头格式
但是返回的json加了红点说明有bom头
该如何擦除bom头
javascript - json带bom头如何处理。

substr($result,3);//bom占3字节

BOM头是UTF-8来告诉编辑器:我是UTF8编码。它的编码是\xEF\xBB\xBF

<code>$result = trim($result, "\xEF\xBB\xBF");
echo $result;</code>

如果你只是需要返回的json值,而你获取后通过正常的json并不能解压成数组格式。可以用字符串截取[符号以后的数据。函数忘记了

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn