PHP. Руководство по PHP. 2005
defined
defined
Description
bool defined (string name)Returns TRUE if the named constant given by name has been defined, FALSE otherwise.
Замечание: If you want to see if a variable exists, use isset() as defined() only applies to constants. If you want to see if a function exists, use function_exists().