Chinaunix首页 | 论坛 | 博客
  • 博客访问: 468241
  • 博文数量: 118
  • 博客积分: 4015
  • 博客等级: 上校
  • 技术积分: 1233
  • 用 户 组: 普通用户
  • 注册时间: 2010-11-24 22:11
文章分类

全部博文(118)

文章存档

2013年(5)

2011年(61)

2010年(52)

分类: 系统运维

2011-04-10 19:55:08

when a form is submited,the item which is not set a value is given the value of "";
so you can not use isset($_POST["name"]) to determine if the item is set a value,
because the isset() can check if a variable is NULL( not "\0") or isset,
so you should use if($_POST["name"] != "") instead to get things done.

判断一个控件是否被赋值的时候,用isset()是不行的,因为isset
判断的依据是这个控件是不是NULL,而被POST的value,如果没被设置
那么它的值是"",而"" != NULL,所以应该用if($_POST["name"] != "")
来进行
toy example:
php -r '$var = ""; if(isset($var)){echo "\"\" != NULL\n";}'

阅读(1571) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

neobilly2011-04-12 23:17:13

php shell interactive mode (need to be compiled --with-readline)
php -a
php>