$_POST['name'] 为空时,获取到真正的值为 '' ;
empty($_POST['name']); true;
isset($_POST['name']); true;
所以最好用
$_POST['name']==''
来判断是否$_POST值是否为空。