0

drupal メニューが 1 つあり、そのページ コールバックは best_quote で、ファイルは handle.php.inc です。handle.php.inc の内容は次のとおりです。

<?php

function best_quote(){
$token=get_token('RT1IADDOH2014-01-20T00:00:00DOHIAD2014-03-05T00:00:00NAENNN100QR0000USD');
get_search_results($token);
$results=get_search_results($token);
return $results;
}



 function get_token($entry){
    $client = new SoapClient();
    $result=$client->do_LowfareSearch(array('rq'=>$array));// return the token
    $token= $result->do_LowfareSearchResult;
    return $token;

 }
function get_search_results($token){
    $client = new SoapClient();
    $polling_array=array();
    $polling_array['rid']=$token;
    $response= $client->do_Polling($polling_array);
    $results= $response->do_PollingResult;
    $xml = simplexml_load_string($results);
    $json = json_encode($xml);
    $array = json_decode($json,TRUE);
            $search_results_first_part=$array["PricedItineraries"]['PricedItinerary'];
    $priced_itineraries_count= count($search_results_first_part);
    if($priced_itineraries_count==0){
        get_search_results($token);
    }else if($priced_itineraries_count==4){
        get_search_results($token);
    }else {
    return $xml;

}

 }

best_quotes() 関数で、結果を返したいのですが、ページが空白です。何が悪いかわかりますか?感謝。

4

1 に答える 1

0

問題が見つかりました: if 条件では、get_search_results($token); を返す必要があります。返すものがなくなったとき。

于 2014-01-10T16:31:14.150 に答える