我有一个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。其他服务器上的相同脚本效果很好。
你有什么想法吗?