PHP-获取POST请求的内容
我在获取内容时遇到问题。我不知道帖子变量的名称,所以我无法使用它来执行此操作,
$variable = $_POST['name'];
因为我不知道“名称”。我想捕获 POST 方法发送的所有变量。 如何获取 $_POST[]
数组的键和相应的值?
I have problem with getting the content. I don't know the names of the post variables so I can't do this using
$variable = $_POST['name'];
because I don't know the "name". I want to catch all of the variables sent by POST method.
How can I get keys of the $_POST[]
array and the corresponding values?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
每个标准:
Standard for-each:
$_POST 只是一个大数组:
$_POST is just a big array:
对于一些快速调试,您还可以使用
for some quick debugging, you can also use
只需使用 for 每个循环
Just use a for each loop
除了
print_r($_POST);
之外,您还可以使用var_dump($_POST);
,但前面提到的最合乎逻辑的解决方案是foreach
循环。Besides
print_r($_POST);
you could also usevar_dump($_POST);
, but most logical solution as mentioned earlier isforeach
loop.基本上 post 请求将被映射到数组。
为了进行调试,您可以调用
此代码,该代码将列出 post 数组中的所有数组。
basically post request will be mapped to array.
for debuging you can call
this code will list all array within post array.
获取钥匙:
To get the keys: