PHP如何执行后台任务?

时间:2018-06-14 22:12:41

标签: php exec background-process

要尝试后台测试,我会创建3个文件:

Index.html (负责通过ajax调用php文件)

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Background Task Manager</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>

<body>

Press The Button To execute a Background Task...
<br>
<button id="perform">Perform Task</button>

</body>

<script>

$( document ).ready(function() {

    $( "#perform" ).click(function() {
      submitAjax();
    });

    function submitAjax() {
            $.ajax({
                url: 'test.php',
                type: "post",
                data: '',
                success: function (data) {
                    alert(data);
                }
            });
        }

});

</script>

</html>

Test.php (使用后台方法调用其他文件的文件)

<?php

//Perform Background Task

exec("C:/wamp/bin/php/php5.6.35/php.exe C:/wamp/www/background/file.php");

echo "Process Started";

?>

File.php (将在后台执行的文件)

<?php

//Create a File

sleep(20);

$content = "My Text File";
$fp = fopen("myText.txt","wb");
fwrite($fp,$content);
fclose($fp);

echo "File Created...";

?>

这个想法如下:一旦用户点击该按钮,就会向test.php文件发出请求。 test.php将触发file.php的后台请求,消息(&#39; Process Started&#39;)将立即出现,并且在我的项目文件夹中创建文件后20秒。

正在发生的事情:当用户点击该按钮时,我只会收到消息&#39; Process Started&#39; 20秒后,即请求未在后台模式下进行。

我希望发生什么:当用户点击该按钮时,会显示消息&#39; Process Started&#39;将立即出现,20秒后,php将在我项目的文件夹中创建该文件。

我该如何解决这个问题?

2 个答案:

答案 0 :(得分:1)

尝试改变:

exec("C:/wamp/bin/php/php5.6.35/php.exe C:/wamp/www/background/file.php");
echo "Process Started";

为:

ob_start();
echo "Process Started";
ob_end_flush();
ob_flush();
flush();
exec("C:/wamp/bin/php/php5.6.35/php.exe C:/wamp/www/background/file.php");

您的问题的相关答案: Apple dev

您也可以使用include代替exec() 它会像:

start();
echo "Process Started";
ob_end_flush();
ob_flush();
flush();

include 'background/file.php';

因此您可以更轻松地调试file.php

答案 1 :(得分:0)

为什么要从php调用exec来运行php shell?这没有道理。为什么不直接调用file.php?

回声在ajax调用中,因此不会被看到;它将作为页面输出返回。通常对于这样的事情,您需要使用字段:

<?
    <p class="Message"></p>
    <button onclick="foo()">Click Me</button>
    <script>
        function foo(){
           $('.Message').text('Processing.....');
           $.post('file.php',function(ret){
               // ret should tell us what happened
               if (ret == "ok")
                   $('.Message').text('File Created');
               else
                   $('.Message').text('File Not Created. Something Went Wrong');
           });
         }
     </script>

file.php应创建该文件,测试该文件是否已创建并返回一个值,该值可以进行测试以查看操作是否成功。您还可以检查console.log中的ret以查看是否出现任何语法错误或异常。页面上的任何输出都将被返回,因此您可能无法获得干净的响应。最好有file.php回应一下:

if ($file_created)
    echo "ok";
else
    echo "failed";