PHP解析带BOM头的JSON数据,对接他人接口的时候,使用json_decode(),返回null的问题与解决方法
在php开发中会遇到和他人对接接口,对方使用json传输数据,使用json_decode()函数却无法将json数据转换为数组。先看封装的代码privatefunctioncurlPost($url,$post_data=[]){$ch=curl_init()ordie(curl_error());curl_setopt($ch,CURLOPT_POSTFIELDS,$post_data);cur