Rumah > Artikel > pembangunan bahagian belakang > php怎么去掉bom头
php去掉bom头的方法:1、通过“json_decode($result, true)”方法实现去除;2、利用“@iconv("UTF-8", "GBK//IGNORE", $result);”实现去除bom头。
推荐:《PHP视频教程》
PHP去除BOM头的方法
但是PHP在设计之初并没有考虑到BOM头的问题,所以在编解码的时候很容易出现问题
比如今天遇到的问题,json_decode,当解码的string有BOM头的时候json_decode就解析失败,返回NULL。(为什么不自动检测并去除BOM头呢。。。小吐槽)
试了两种方式能去除掉:
$result = trim($result, "\xEF\xBB\xBF"); print_r(json_decode($result, true)); exit;
还有一种比较矬:
$result = @iconv("UTF-8", "GBK//IGNORE", $result); $result = @iconv("GBK", "UTF-8//IGNORE", $result); print_r(json_decode($result, true)); exit;
Atas ialah kandungan terperinci php怎么去掉bom头. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!