在第一个查询中清空POST数据

时间:2014-01-29 09:46:21

标签: php apache post

我有一个PHP脚本和通过POST发送数据的奇怪问题。

我收到POST数据的脚本源:

<?php
print_r($GLOBALS);
?>

发送POST数据的脚本:

<?php
    $url = 'http://server.com/script.php';
    $data = array(
        "request" => '
        {
            "variable": "some data"
        }'
    );

    $options = array(
        'http' => array(
            'header'  => "Content-type: application/x-www-form-urlencoded\r\n",
            'method'  => 'POST',
            'content' => http_build_query($data),
        ),
    );
    $context  = stream_context_create($options);
    echo $result = file_get_contents($url, false, $context);
?>

当我第一次调用此脚本时,它会返回:

Array ( [GLOBALS] => Array *RECURSION* [_POST] => Array ( ) [_GET] => Array ( ) [_COOKIE] => Array ( ) [_FILES] => Array ( ) )

当我重复查询时,没关系 - 数组显示POST数据。几分钟后它又空了。

我尝试在.htaccess文件中设置不同的设置,但它没有帮助。

PS。其他服务器上的相同脚本效果很好。

你有什么想法吗?

0 个答案:

没有答案