您好我正在使用php尝试服务器发送事件(SSE),我有一个https网址,我可以获得实时流数据。下面是我的脚本,我在无限循环中尝试。
PHP:
<?php
while(1)
{
$get_stream_data = fopen('https://api.xyz.com:8100/update-stream/connect', 'r');
if($get_stream_data)
{
$stream_data = stream_get_contents($get_stream_data);
$save_stream_data = getStreamingData($stream_data);
if($save_stream_data == true)
{
continue;
}
}
else
{
sleep(1);
continue;
}
}
function getStreamingData($stream_data)
{
$to = "accd@xyz.com";
$subject = "Stream Details";
$msg = "Stream Details : ".$stream_data;
$headers = "From:streamdetail@xyz.com";
$mailsent = mail($to,$subject,$msg,$headers);
if($mailsent){
return true;
}else {
return false;
}
}
?>
错误:
Warning: fopen(https://api.xyz.com:8100/update-stream/connect): failed to open stream: Connection timed out in /home/public_html/get_stream_data/index.php on line 4
当我的服务器在实时提供更新时,我无法获取数据。
我使用以下命令在命令提示符中检查了实时流式传输。
CURL
curl --get 'https://api.xyz.com:8100/update-stream/connect' --verbose
答案 0 :(得分:1)
首先,最好使用PHP的curl函数。查看PHP file_get_contents() returns "failed to open stream: HTTP request failed!"
的各种答案如果您坚持使用fopen()
,则可能需要为SSL设置上下文,并且可能涉及安装某些证书。请参阅file_get_contents(): SSL operation failed with code 1. And more(并注意有关已接受答案的安全警告)
最后,你的while(1)循环在fopen()附近(在相对罕见的失败之后可以重新启动),但你实际上想要它在里面。这是您的代码,只显示最小的更改:
<?php
while(1)
{
$get_stream_data = fopen('https://api.xyz.com:8100/update-stream/connect', 'r');
if($get_stream_data)while(1)
{
$stream_data = stream_get_contents($get_stream_data);
$save_stream_data = getStreamingData($stream_data);
if($save_stream_data == true)
{
continue;
}
sleep(1);
}
else
{
sleep(1);
continue;
}
}
更新:上述代码仍然唠叨我:我认为您希望我使用fread()
代替stream_get_contents()
,并使用阻止代替{{1} (在内循环中)。
顺便说一句,我建议将外循环睡眠(1)更改为睡眠(3)或睡眠(5),这是Chrome / Firefox /等中的典型默认值。 (实际上,您应该寻找发送“重试”标头的SSE服务器,并将该数字用作休眠。)