php 如何使用 Firebug 获取表单 POST 数据?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/8717672/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-26 05:20:52  来源:igfitidea点击:

How to get form POST data with Firebug?

phpvariablespostfirebug

提问by Fredy31

I need, in my debugging phase, to lookup what passes in the $_POSTvariable in a page that I can't currently touch (it's live online.)

在我的调试阶段,我需要在$_POST当前无法触摸的页面中查找传入变量的内容(它在线直播。)

I picked up my trusty Firebug, and can't find an option making it able to read this PHP variable.

我拿起了我信赖的 Firebug,但找不到使其能够读取此 PHP 变量的选项。

So how could I checkup what is in that $_POSTvariable, without touching the code of the page I'm viewing?

那么如何在$_POST不触及我正在查看的页面的代码的情况下检查该变量中的内容呢?

采纳答案by sascha

A nice alternative: TamperData

一个不错的选择:TamperData

You can even modify post data before submitting.

您甚至可以在提交之前修改帖子数据。

2019-06-20: link updated

2019-06-20:链接更新

回答by e-motiv

Check this answer Use Net Tab of Firebug. There is POST info in that tab too!

检查此答案Use Net Tab of Firebug。该选项卡中也有 POST 信息!

Original question:To see the content POST data trasferred by jQuery

原始问题:查看 jQuery 传输的内容 POST 数据