使用参数在后台运行PHP代码

时间:2012-10-06 03:15:11

标签: php

我有这个用户表单。用户将提交数据。然后使用该数据,我想将该数据发送到将在后台运行的PHP脚本。原因是因为脚本有很多睡眠等等,我不想让用户等待。

所以我的问题的基础是:如何在后台运行PHP脚本,如何将参数(如GET)传递给它?

4 个答案:

答案 0 :(得分:0)

这样的事情会起作用

http://gearman.org/index.php?id=manual:job_server

但是,为什么你的剧本中有这么多睡眠?

答案 1 :(得分:0)

尝试使用AJAX,是一个异步的javascript和xml, 有一个简单的例子:http://www.w3schools.com/php/php_ajax_intro.asp

在AJAX中,页面不会刷新,结果由JSON或XML发送。

答案 2 :(得分:0)

您可以使用exec运行后台脚本。使用像

这样的东西
exec('php -f bg_script.php -- '.escapeshellarg($param1).' '.escapeshellarg($param2).' > /dev/null & ');

在脚本bg.php中,您可以从数组$argv

中获取传递的参数

答案 3 :(得分:-1)

file_get_contents()超时怎么办?

if (isset($_GET['async'])) {

    for( $i = 0 ; $i <= 5 ; $i++ )
    {
        append_log(date('l jS \of F Y h:i:s A') . ': background process. parameter ' . $i . ': ' . $_GET[$i] . '<br />');
        sleep(1);
    }

    exit;
}

header( 'Content-type: text/html; charset=utf-8' );
$parameters = array('async' => true, 1 => 'one', 2 => 'two', 3 => 'three', 4 => 'four', 5 => 'five');
pseudo_async($parameters);  // this runs this php script in the backbround

echo 'Begin ...<br />';
for( $i = 0 ; $i <= 5 ; $i++ )
{
    output_buffer('appended to the log <br />');
    append_log(date('l jS \of F Y h:i:s A') . ': main process.<br />');
    sleep(1);
}
echo 'End ...<br />';


function pseudo_async($query) {

    $timeout = array('http' => array('timeout' => 0.01));
    $context = stream_context_create($timeout);

    @file_get_contents(selfurl() . '?' . http_build_query($query), false, $context);
}

function append_log($msg) {
    $file = __DIR__ . '/log.html';
    file_put_contents($file, $msg, FILE_APPEND);
}

function selfurl() {
    $pageURL = (@$_SERVER["HTTPS"] == "on") ? "https://" : "http://";
    if ($_SERVER["SERVER_PORT"] != "80")
        $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
    else 
        $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
    return $pageURL;
}

function output_buffer($str) {
    echo $str;
    flush();
    ob_flush(); 
}