空的 $_POST. 值最终变为$GLOBAL


Empty $_POST. Values end up in $GLOBAL instead

自从重新安装操作系统以来,我一直在为一个奇怪的 _POST 美元问题而苦苦挣扎。我决定回到我的一个空闲时间项目上工作,我注意到我所有的 POST 请求都不起作用,但我相信它们以前都有效过。

我注意到的是,所有 $_POST 值总是以 $GLOBALS 结尾,而 $_POST 数组始终为空。有什么想法吗?

使用 PHP 版本 5.6.19

PHP.ini

https://dl.dropboxusercontent.com/u/42704655/php.ini

脚本:

    $('#login-form').on('submit', function () {
    $.ajax({
        type: "POST",
        url: "php/login.php",
        data: $("#login-form").serialize(),
        success: function (data) {
    });
    return false;
});

.HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
    <link rel="stylesheet" type="text/css" href="css/login.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" async></script>
    <script src="scripts/login-script.js" async></script>
</head>
<body>
<div id="wrapper">
    <div id="login">
        <form method="post" id="login-form" action="php/login.php">
            <table>
                <tr>
                    <td>Login:</td>
                    <td><input type="text" name="login" form="login-form" class="input" autofocus></td>
                </tr>
                <tr>
                    <td>Password:</td>
                    <td><input type="password" name="password" form="login-form" class="input"></td>
                </tr>
                <tr>
                    <td colspan="2">
                        <button type="submit" form="login-form">Login</button>
                    </td>
                </tr>
                <tr>
                    <td colspan="2" id="input-td">
                        <p id="errorMsgs"></p>
                    </td>
                </tr>
            </table>
        </form>
    </div>
</div>
</body>
</html>

.PHP

<?php
print_r($_POST);

$GLOBALS("test1"作为登录名,"test2"作为pw)

array(8) { ["HTTP_RAW_POST_DATA"]=> string(26) "login=test1&password=test2" ["_GET"]=> array(0) { } ["_POST"]=> array(0) { } ["_COOKIE"]=> array(0) { } ["_FILES"]=> array(0) { } ["GLOBALS"]=> *RECURSION* ["login"]=> string(0) "" ["pass"]=> string(0) "" }

我想我刚刚想通了。这是我内置在IDE中的Web服务器,它有一些错误。https://intellij-support.jetbrains.com/hc/en-us/community/posts/206999125-PhPStorm-10-does-not-allow-POST-method