我正在用PHP制作一个项目,我遇到了问题。我的问题是我不知道如何在$ _GET foreach循环中获取变量的名称。 我的代码如下所示:
foreach($_GET as $get) {
$v_name = //I want to be this variable the $get variable's name
}
例如:如果有人发布了这样的帖子请求:http://www.example.com/?某事 =示例
在这种情况下,我希望获得""。
感谢所有帮助我的人 - Jumpak
答案 0 :(得分:-2)
您需要打印数组$_GET
您应该阅读foreach
循环的基础知识。
foreach($_GET as $key=>$get) {
// ^^^ // You can get the index key from Array
//$v_name = //I want to be this variable the $get variable's name
echo $key;
}