PHPが速達情報を調べる方法


この実例はPHPが速達情報を調べる方法を述べている。皆さんの参考にしてください。具体的には以下の通りです
ここでは宅配便100の物流検索を使います。
公式文書では、htmlのインターフェースに戻るしかありません。jsonに戻ることもできます。
phpコードは以下の通りです
/**
 * @desc
 * @param string $code
 * @param string $invoice
 * @return mixed $result(
      'status','info','state','data'
   )
 */
function getExpressDelivery($code,$invoice){
    $result = array('status'=>0,'info'=>' ');
    $url = "http://m.kuaidi100.com/query?type={$code}&postid={$invoice}&id=1&valicode=&temp=".rand(1,710);
    $body = file_get_contents($url); //FIXME
    $body = json_decode($body,true);
    $result['status'] = $body['status'] == 200 ? 1 : 0;
    $result['info'] = $body['message'];
    isset($body['data']) && ($result['state']=$body['state']) && ($result['data'] = $body['data']) ;
    return $result;
}
本論文で述べたように、皆さんのphpプログラムの設計に役に立ちます。