<?php// 你要跳转的url$url = "http://www.baidu.com/";
// 如果使用的是php-fpmif(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-fpm可以用fastcgi_finish_request函数,上面例子测试可用,如果是apache,用的是javascript跳转,我本地没apache,没测试
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
<?php
// 你要跳转的url
$url = "http://www.baidu.com/";
// 如果使用的是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-fpm可以用fastcgi_finish_request函数,上面例子测试可用,
如果是apache,用的是javascript跳转,我本地没apache,没测试