file_get_contents(' php:// input')返回带有PUT请求的空字符串

时间:2015-02-19 16:08:04

标签: php fastcgi iis-8.5

将我们的一个网站从带有Apache的Linux移动到带有通过FastCGI运行PHP 5.6的IIS(8.5)的Windows后,我们遇到了file_get_contents('php://input')为PUT请求返回空字符串的问题。 / p>

我创建了以下测试:

<?php
if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && 
    strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') {
    die(file_get_contents('php://input'));
}
?>
<!DOCTYPE html>
<html>
<head>
    <script src="//code.jquery.com/jquery-2.1.3.min.js"></script>
</head>
<body>
    <h2>POST:</h2>
    <div id="post"></div>

    <h2>PUT:</h2>
    <div id="put"></div>
    <script>
        $.ajax({
            url: '?',
            data: 'Working',
            type: 'POST'
        }).then(function(response) {
            $('#post').html(response || 'Not working');
        });

        $.ajax({
            url: '?',
            data: 'Working',
            type: 'PUT'
        }).then(function(response) {
            $('#put').html(response || 'Not working');
        });
    </script>
</body>
</html>

结果是:

  

POST:

     

工作

     

PUT:

     

不工作

可能导致这种情况的原因是什么?

1 个答案:

答案 0 :(得分:1)

事实证明问题是由Helicon Ape模块(用于支持Apache .htaccess和.htpasswd配置文件的模块)引起的。 删除此模块可以解决问题,但我仍然不知道它为什么会干扰PUT请求。我想我将不得不在他们的论坛上发布这个问题。