Checks whether the given constant exists and is defined.
Bemærk: 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().
Returns TRUE if the named constant given by name
has been defined, FALSE otherwise.