Go to the source code of this file.
Functions | |
emptyString (&$value) | |
Returns FALSE if var has a non-empty value. |
Definition in file String.php.
emptyString | ( | &$ | value | ) |
Returns FALSE if var has a non-empty value.
The following things are considered to be empty:
"" (an empty string) NULL array() (an empty array) var $var; (a variable declared, but without a value in a class)
Definition at line 20 of file String.php.
Referenced by escN(), escS(), and getVarContent().
00021 { 00022 if (empty($value) && $value != '0') 00023 return true; 00024 00025 return false; 00026 }