PHP中file_get_contents函數擷取帶BOM的utf-8,然後json_decode() 返回null的問題

來源:互聯網
上載者:User

  問題:用php讀取檔案中的json資料,怎麼解析都是返回null。

{"a":1,"b":2,"x":[{"c":3},{"d":4},{"e":5}]}

  讀取檔案,使用了file_get_contents函數。

        $json = '{"a":1,"b":2,"x":[{"c":3},{"d":4},{"e":5}]}';        var_dump(json_decode($json));        var_dump(json_decode($json, true));

  如果直接在php中讀取json字串,是沒有錯的,怎麼從檔案讀取就錯了呢。

  搜尋得以下結果:

  PHP: json_decode - Manual

  http://www.php.net/manual/zh/function.json-decode.php

  php使用json_decode返回NULL – 伺服器營運與Web架構

  http://www.nginx.cn/337.html

  php json_decode null - toeasy - 部落格園

  http://www.cnblogs.com/Toeasy/archive/2012/04/09/2439688.html

  json_decode() 得到null-夜色-Yes-PHPChina - Powered by Discuz!
  http://bbs.phpchina.com/thread-267593-1-1.html

  PHP5中file_get_contents函數擷取帶BOM的utf-8檔案內容時需注意 - wanglianghuaihua的日誌 - 網易部落格
  http://wanglianghuaihua.blog.163.com/blog/static/54251531201091915210555/

 

  關鍵結果在是後面兩個。造成json_decode() 解析null的原因是,json檔案是UTF-8格式,帶有BOM。

  修正後代碼如下,即可正常解析。

$dmText = file_get_contents( AROOT .'data' . DS . 'DMType.json.php');        if(preg_match('/^\xEF\xBB\xBF/',$dmText))        {             $dmText = substr($dmText,3);        }        //trim        $dmText = t($dmText);                echo $dmText;        /* create array list from comments */        $dmList = json_decode($dmText,true);    //當該參數為 TRUE 時,將返回 array 而非 object 。        var_dump($dmList);

  顯示結果:

View Code

{    "success": "true",    "total":"4",    "items": [        {"id":"1","c":"asdaEG","tb": "dm_suppliertype", "cn": "供應商類型","tips":"供應商類型"},        {"id":"2","c":"adsafR","tb": "suppliertype2", "cn": "供應商類型2","tips":"供應商類型"},        {"id":"3","c":"ada222","tb": "suppliertype3", "cn": "供應商類型3","tips":"供應商類型"},        {"id":"4","c":"23jetG","tb": "suppliertype4", "cn": "供應商類型4","tips":"供應商類型"}    ]}array(3) {  ["success"]=>  string(4) "true"  ["total"]=>  string(1) "4"  ["items"]=>  array(4) {    [0]=>    array(5) {      ["id"]=>      string(1) "1"      ["c"]=>      string(6) "asdaEG"      ["tb"]=>      string(15) "dm_suppliertype"      ["cn"]=>      string(15) "供應商類型"      ["tips"]=>      string(15) "供應商類型"    }    [1]=>    array(5) {      ["id"]=>      string(1) "2"      ["c"]=>      string(6) "adsafR"      ["tb"]=>      string(13) "suppliertype2"      ["cn"]=>      string(16) "供應商類型2"      ["tips"]=>      string(15) "供應商類型"    }    [2]=>    array(5) {      ["id"]=>      string(1) "3"      ["c"]=>      string(6) "ada222"      ["tb"]=>      string(13) "suppliertype3"      ["cn"]=>      string(16) "供應商類型3"      ["tips"]=>      string(15) "供應商類型"    }    [3]=>    array(5) {      ["id"]=>      string(1) "4"      ["c"]=>      string(6) "23jetG"      ["tb"]=>      string(13) "suppliertype4"      ["cn"]=>      string(16) "供應商類型4"      ["tips"]=>      string(15) "供應商類型"    }  }}

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.