欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

接收到的json解析不了,必须用php解析,该如何解决

程序员文章站 2022-05-16 22:20:28
...
接收到的json解析不了,必须用php解析

function sendPost($url,$postData){
$postdata = http_build_query($postData);
$options = array(
'http' => array(
'method' => 'POST',
'header' => 'Content-type:application/x-www-form-urlencoded',
'content' => $postdata,
'timeout' => 15 * 60 // 超时时间(单位:s)
)
);
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);

return $result;
}


$url = "http://chepiao.sinaapp.com/api.php?act=remain";
$data = array(
"date"=>"20131220",
"startStation"=>"北京",
"arriveStation"=>"天津"
);
$result = sendPost($url, $data);
$obj = json_decode($result);
$result就是返回来的数据,就是解析不了,用json_decode($result);解析成的是NULL
作者信息
接收到的json解析不了,必须用php解析,该如何解决

认证0级讲师

推荐视频教程
  • 接收到的json解析不了,必须用php解析,该如何解决javascript初级视频教程
  • 接收到的json解析不了,必须用php解析,该如何解决jquery 基础视频教程
  • 视频教程分类