PHP Manual: defined
defined
Description
bool defined ( string name )Checks whether the given constant exists and is defined.
Note: 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().