1

この関数を改善して、サーバーが xml にない出力を返したときに予期しない応答を処理できるようにする方法を教えてください。

function fetch_xml($url, $timeout=15)
{
    $ch = curl_init();

    curl_setopt_array($ch, array(
        CURLOPT_HEADER => 0,
        CURLOPT_RETURNTRANSFER => 1,
        CURLOPT_CONNECTTIMEOUT => (int)$timeout,
        CURLOPT_FOLLOWLOCATION => 1,
        CURLOPT_URL => $url)
    );

    $xml_data = curl_exec($ch);
    curl_close($ch);

    if (!empty($xml_data)) {
        return new SimpleXmlElement($xml_data);

    }
    else {
        return null;
    }
}
4

1 に答える 1

1

これを試してみることができます。私はそれをテストしていません。

function fetch_xml($url, $timeout = 15, $max_attempts = 5, $attempts = 0)
{
    $ch = curl_init();

    curl_setopt_array($ch, array(
        CURLOPT_HEADER => 0,
        CURLOPT_RETURNTRANSFER => 1,
        CURLOPT_CONNECTTIMEOUT => (int)$timeout,
        CURLOPT_FOLLOWLOCATION => 1,
        CURLOPT_URL => $url)
    );

    $xml_data = curl_exec($ch);
    curl_close($ch);

    if ($attempts <= $max_attempts && !empty($xml_data)) // don't infinite loop
    {
        try
        {
            return new SimpleXmlElement($xml_data);
        } 
        catch (Exception $e)
        {
            return fetch_xml($url, (int)$timeout, $max_attempts, $attempts++);
        } 
    }
    return NULL;
}
于 2013-01-10T07:30:51.793 に答える