dousui4577 2016-11-03 15:54
浏览 76
已采纳

如果流脱机,则重定向到另一个页面(PHP)

$fp = fsockopen("www.example.com", 8000, $errno, $errstr, 1); //last param is timeout in seconds
if (!$fp) {
    header('Location: http://www.anothersite.com/some_message');
} else {
    fclose($fp); // radio OK
}

The code is not working and do not redirect.

  • 写回答

1条回答 默认 最新

  • dousu8767 2016-11-08 19:27
    关注
    ob_start();
    //something
    ob_end_clean(); //erase output
    header('Location: ');
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?