3

一个网站上有 5 个流。我需要检测这些流是否存在。如果没有,则可以播放一些音频文件。

我正在使用 html5 播放流,流 url 看起来像这样:

http://locus.creacast.com:9001/StBaume_grotte.ogg

我尝试了不同的东西,但它似乎不起作用。永远不会检测到流。

解决方案 1:在这里,我只是尝试检查文件是否存在。

if (file_exists($stream_1)) {
             $debug_output_stream_1 = "Le fichier $stream_1 existe.";
             $erreur_404_Stream_1 = true;  
        } else {
             $debug_output_stream_1 =  "Le fichier $stream_1 n'existe pas.";
             $erreur_404_Stream_1 = false;  
        }

解决方案 2:我尝试检测 404 错误

 $file_headers_1 = @get_headers($stream_1);
        if($file_headers_1[0] == 'HTTP/1.1 404 Not Found') {
            $debug_output_stream_1 = "StBaume_sommet.ogg : L'URL n'existe pas.";
            $erreur_404_Stream_1 = true;  
        }
        else {
            $debug_output_stream_1 = "StBaume_sommet.ogg : L'URL existe.";
            $erreur_404_Stream_1 = false;
        }

你知道如何检查流是否存在吗?

4

1 回答 1

4

您正在检查整个状态行,包括 HTTP 版本HTTP/1.1。大多数服务器返回HTTP/1.0。您只需要检查状态码。

if (strpos($file_headers_1[0], '200 OK') === false) {
    // error occurred
}
于 2013-03-11T17:11:21.167 回答