Static/PhpInclude/FareOfficeLib/General/String.php File Reference

Includes string manipulating functions. More...

Go to the source code of this file.

Functions

 emptyString (&$value)
 Returns FALSE if var has a non-empty value.


Detailed Description

Includes string manipulating functions.

Author:
Daniel Lindh <[email protected]>

Definition in file String.php.


Function Documentation

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 }


Generated on Wed May 6 23:28:24 2009 for fareofficelib by  doxygen 1.5.8