>백엔드 개발 >PHP 튜토리얼 > 接收到的json解析不了,必须用php解析,该如何解决

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

WBOY
WBOY원래의
2016-06-13 12:31:11769검색

接收到的json解析不了,必须用php解析

<br />
function sendPost($url,$postData){<br />
 $postdata = http_build_query($postData);<br />
 $options = array(<br />
 'http' => array(<br />
 'method' => 'POST',<br />
 'header' => 'Content-type:application/x-www-form-urlencoded',<br />
 'content' => $postdata,<br />
 'timeout' => 15 * 60 // 超时时间(单位:s)<br />
)<br />
 );<br />
 $context = stream_context_create($options);<br />
 $result = file_get_contents($url, false, $context);<br />
<br />
 return $result;<br />
 }<br />
<br />
<br />
$url = "http://chepiao.sinaapp.com/api.php?act=remain";<br />
$data = array(<br />
 "date"=>"20131220",<br />
 "startStation"=>"北京",<br />
 "arriveStation"=>"天津"<br />
);<br />
$result = sendPost($url, $data);<br />
 $obj = json_decode($result);<br />
$result就是返回来的数据,就是解析不了,用json_decode($result);解析成的是NULL

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.