如何在帖子中抓取所有变量(PHP) [英] How to grab all variables in a post (PHP)

查看:110
本文介绍了如何在帖子中抓取所有变量(PHP)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在帖子中抓取所有变量(PHP)?
我不想处理 $ _ POST ['var1']; $ _POST [ VAR2’ ]; $ _POST [ VAR3’ ]; ...
我想一次回显所有内容。 如果你真的只是想打印它们,你可以这样做:

  print_r($ _ POST); 

或者,您可以单独与它们进行交互,例如:

  foreach($ _POST as $ key => $ value){
//做某事
echo $ key。 '具有'的价值。 $值;
}

但是无论您做什么,请过滤输入。 SQL注入给每个人不眠之夜。


How to grab all variables in a post (PHP)? I don't want to deal with $_POST['var1']; $_POST['var2']; $_POST['var3']; ... I want to echo all of them in one shot.

解决方案

If you really just want to print them, you could do something like:

print_r($_POST);

Alternatively, you could interact with them individually doing something like:

foreach ($_POST as $key => $value) {
    //do something
    echo $key . ' has the value of ' . $value;
}

but whatever you do.. please filter the input. SQL Injection gives everyone sleepless nights.

这篇关于如何在帖子中抓取所有变量(PHP)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆