definedChecks whether a given named constant exists
&reftitle.description;
booldefinedstringname
Checks whether the given constant exists and is defined.
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.
&reftitle.parameters;
name
The constant name.
&reftitle.returnvalues;
Returns &true; if the named constant given by name
has been defined, &false; otherwise.
&reftitle.examples;
Checking Constants
]]>
&reftitle.seealso;
defineconstantget_defined_constantsfunction_existsThe section on Constants