doujing3896 2013-02-05 15:08
浏览 89
已采纳

php:// input中的数据不等于解析并放在$ _POST中的数据

I'm working out this odd bug in Wordpress, and I don't know how wordpress works, but I ran around for an hour trying to isolate the problem and see where the root of the issue comes from.

Turns out the problem is that the thing isn't updating because $_POST does not have the data that is being requested.

At the top of the file that I'm accessing from the browser, before any other code, I did the following:

echo file_get_contents("php://input");
print_r($_POST); exit();

I see that wordpress uses $_POST as a catch-all global and writes to it as well. I thought maybe wordpress kicks the data out somewhere but I couldn't find that. This is at the top of the file anyways, before anything else happens at all.. I don't think it's even possible for the variables to be modified before that

The output from that is

widget-text%5B3%5D%5Btitle%5D=Test&widget-text%5B3%5D%5Btext%5D=THISISATEST&sidebar=sidebar-1&sidebar-1_position=1&sidebar-2_position=&sidebar-3_position=&sidebar-4_position=&sidebar-5_position=&savewidget=Save+Widget&widget-id=text-3&id_base=text&multi_number=3&_wpnonce=36852083b6&_wp_http_referer=%2Fwp-admin%2Fwidgets.php%3Fmessage%3D0%26editwidget%3Dtext-3%26sidebar%3Dsidebar-1%26key%3D0
Array
(
    [widget-text] => Array
        (
            [3] => Array
                (
                    [title] => Test
                )

        )

    [sidebar] => sidebar-1
    [sidebar-1_position] => 1
    [sidebar-2_position] => 
    [sidebar-3_position] => 
    [sidebar-4_position] => 
    [sidebar-5_position] => 
    [savewidget] => Save Widget
    [widget-id] => text-3
    [id_base] => text
    [multi_number] => 3
    [_wpnonce] => 36852083b6
    [_wp_http_referer] => /wp-admin/widgets.php?message=0&editwidget=text-3&sidebar=sidebar-1&key=0
)

url_decoded:

widget-text[3][title]=Test&widget-text[3][text]=THISISATEST&sidebar=sidebar-1&sidebar-1_position=1&sidebar-2_position=&sidebar-3_position=&sidebar-4_position=&sidebar-5_position=&savewidget=Save Widget&widget-id=text-3&id_base=text&multi_number=3&_wpnonce=36852083b6&_wp_http_referer=/wp-admin/widgets.php?message=0&editwidget=text-3&sidebar=sidebar-1&key=0Array

Note how in the raw data, widget-text[3][text]=THISISATEST exists. But $_POST['widget-text']['3']['text'] is undefined.

I looked through phpinfo and can't find any relevant settings. I am on PHP Version 5.3.8, Apache 2, I'm running suse on AWS.

Does anyone have any ideas on how to make $_POST parse the raw data correctly?

  • 写回答

2条回答 默认 最新

  • dousong2967 2013-02-05 16:50
    关注

    This is indeed weird. Could be a bug in PHP or issue with configuration/extension.

    1. Try changing configuration variables max_input_nesting_level, max_input_vars, max_input_time. If you're unsure about values just try default ones. Check the PHP documentation page to look up default values and their meaning.

    2. If you're running suhosin extension, try disabling it and see if it helps. Also all suhosin.post.* configuration keys look interesting.

    3. Googling reveals similar problems: one, two.

    4. Try accessing it through $_REQUEST - $_REQUEST['widget-text']['3']['text']

    Anyway, after some googling it seems like this happens in PHP 5.3.8. So upgrading may be another option.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 人在外地出差,速帮一点点
  • ¥15 如何使用canvas在图片上进行如下的标注,以下代码不起作用,如何修改
  • ¥15 Windows 系统cmd后提示“加载用户设置时遇到错误”
  • ¥50 vue router 动态路由问题
  • ¥15 关于#.net#的问题:End Function
  • ¥15 无法import pycausal
  • ¥15 VS2022创建MVC framework提示:预安装的程序包具有对缺少的注册表值的引用
  • ¥15 weditor无法连接模拟器Local server not started, start with?
  • ¥20 6-3 String类定义
  • ¥15 嵌入式--定时器使用