Lors du débogage d'un get PHP, veuillez
[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]
Ouvrir directement http://kj.kai861.com/view/pk10.html?1?10001? aucun ? Normal
Merci
L'API devrait être la suivante : http://api.api68.com/pks/getLotteryPksInfo.do?lotCode=10001
Je ne sais pas ce que vous voulez obtenir, mais file_get_contents( $api ); renvoie du HTML, pas du JSON, donc ce json_decode doit être faux.
Existe-t-il un moyen simple d'obtenir des données dynamiques générées par JS ?