<form action="test.php" method="post" target="_self">
<input type="text" name="name">
<input type="submit" value="提交">
</form>
<?php
echo $_POST["name"]===""; //输出1
?>
总结:当向后台提交一个空的input时,后台接收到的是一个“”空字符串
<form action="test.php" method="post" target="_self">
<input type="text" name="name">
<input type="submit" value="提交">
</form>
<?php
echo $_POST["name"]===""; //输出1
?>
总结:当向后台提交一个空的input时,后台接收到的是一个“”空字符串