00001 <?php 00020 function emptyString(&$value) 00021 { 00022 if (empty($value) && $value != '0') 00023 return true; 00024 00025 return false; 00026 } 00027 ?>