php函数:isset() empty()
疯子的紫梦
posted @ 2009年11月02日 03:41
in php
, 1192 阅读
isset(): 检查变量是否存在
例子:
$str = ''; if(isset($str))//true { echo '变量$str存在'; }else { echo '变量$str不存在'; } ------------------------------------------ $str = null; if(isset($str))//false { echo '变量$str存在'; }else { echo '变量$str不存在'; } ------------------------------------------------
empty(); 检查变量值是否为空,当变量的值为:"" 0 '0' false array()时为true
例子
$str=''; if(empty($str)) { echo '变量$str的值为空' } else { echo '变量$str的值不为空'} }