PHP中获取提交按钮的名称
如何在 PHP 中获取提交按钮的名称?
我得到了提交按钮的值,但我找不到 获取按钮名称的任何代码。下面是我写的代码。
<form name="form1" method="post">
<input type="submit" value="hello" name="submitbutton">
</form>
<?php
echo "Value of submit button: " . $_POST['submitbutton'];
echo "Name of submit button: " . // What should I do here? //;
?>
How do I get the name of the submit button in PHP?
I got the value of submit button, but I could not find
any code to get the name of the button. Below is the code I have written.
<form name="form1" method="post">
<input type="submit" value="hello" name="submitbutton">
</form>
<?php
echo "Value of submit button: " . $_POST['submitbutton'];
echo "Name of submit button: " . // What should I do here? //;
?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您将在 $_POST 数组中找到该名称。
这样您将看到 $_POST 数组中的所有内容。
您可以使用以下方法迭代数组:
You will find the name in the $_POST array.
This way you will see everything in the $_POST array.
You can iterate through the array with:
'submitbutton'
是提交按钮的名称。您可以使用 array_keys() 功能
'submitbutton'
is the name of your submit button.you can get the names of super global $_POST array elements with array_keys() function
与任何其他 POST 变量一样,名称将位于 $_POST 数组中。该名称是 $_POST 数组中的键。
Its like any other POST variable, the name will be in the $_POST array. The name is the key in the $_POST array.