在我的 html 表单中,我有一组单选按钮
<form action="receive.php" method="post">
<input type="radio" name="rad" value="one" /> One <br />
<input type="radio" name="rad" value="two" /> Two <br />
<input type="radio" name="rad" value="three" /> Three <br />
<input type="submit" value="submit" />
</form>
我有一个没有选中单选按钮的场景。在这种情况下,我的服务器端 php 接收输入值为false
. 我想要做的是将 false 更改为null
or undefined
。那可能吗?任何帮助是极大的赞赏。