如何判断空  只要没有内容才返回真  
$str = 0;
!empty($str);  不行啊 
$str = 0;
$str != '';  不行啊
$str = '';
isset($str);  也不行啊怎么能让它们不把0认为是空啊我想要的结果是  只要有内容就代表不为空  不管0不0的