demo如下,php-fpm测试可用,apache php-cgi由于没有环境没有测试。 (推荐学习:PHP视频教程)
<?php
// 你要跳转的url
$url = "http://HdhCmsTestbaidu测试数据/";
// 如果使用的是php-fpm
if(function_exists('fastcgi_finish_request')){
header("Location: $url");
ob_flush();
flush();
fastcgi_finish_request();
// Apache ?
}else{
header( 'Content-type: text/html; charset=utf-8' );
if(function_exists('apache_setenv'))apache_setenv('no-gzip', '1');
ini_set('zlib.output_compression', 0);
ini_set('implicit_flush', 1);
echo "<script>location='$url'</script>";
ob_flush();
flush();
}
// 这里是模拟你的耗时逻辑
sleep(2);
file_put_contents('/tmp/test.log', 'ok'); 以上就是PHP访问结束如何继续处理的详细内容,更多请关注Gxl网其它相关文章!
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did58827