在調試一個PHP get 請大家
[code=php]<?php
$api = 'http://kj. kai861.com/view/pk10.html?1?10001?none?';
$resource = file_get_contents( $api );
$data = json_decode( $resource , 1 );
$ct = $data['c_t'];
$cd = $data['c_d'];
$cr = $data['c_r'] ;
header('Content-Type: text/xml;charset=utf8');
$limit=strlen($ct)-3;
$ct= substr($ct,0,$limit).''.substr($ct,$limit,$limit 3);
function tmp($v){
return 10>$v?"0{$v}":$v;
# }
$cr=implode(',',array_map('tmp', array_slice(explode(',',$cr),0,20)));
echo '<xml>
<row expect="'.$ct.'" opencode="'.$cr.'" opentime="'.str_replace('/','-',$cd).'"/>
</xml>';[/code ]
#直接開啟http://kj.kai861.com/view/pk10.html?1?10001?none? 正常
謝謝
小さな手は2018-06-24 15:28:02
我不知道你要取得什麼但是file_get_contents( $api );回傳的是HTML不是JSON所以這個再json_decode一定是錯的