php 执行耗时任务 后台执行

Posted 百事可口

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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(33);

linux测试成功,windows不行

可处理的扩展 Gearman yii2-queue exec命令等 待研究

 

以上是关于php 执行耗时任务 后台执行的主要内容,如果未能解决你的问题,请参考以下文章

Android Service的启动过程

请教用nodejs执行耗时算法的处理方式

php后台运行以及定时任务的4种实现原理以及代码

通过AsyncTask访问后台后得到的返回数据在Android端显示

AsyncTaskHandlerThreadIntentService和线程池

Android自助餐之AsyncTask