<?xml version="1.0" encoding="iso-8859-1"?> <!-- $Revision: 1.8 $ --> <!-- splitted from ./en/functions/misc.xml, last change in rev 1.2 --> <refentry id="function.defined"> <refnamediv> <refname>defined</refname> <refpurpose> Checks whether a given named constant exists </refpurpose> </refnamediv> <refsect1> <title>Description</title> <methodsynopsis> <type>bool</type><methodname>defined</methodname> <methodparam><type>string</type><parameter>name</parameter></methodparam> </methodsynopsis> <para> Returns &true; if the named constant given by <parameter>name</parameter> has been defined, &false; otherwise. </para> <para> <example> <title>Checking Constants</title> <programlisting role="php"> <![CDATA[ <?php /* Note the use of quotes, this is important. This example is checking * if the string 'CONSTANT' is the name of a constant named CONSTANT */ if (defined('CONSTANT')) { echo CONSTANT; } ?> ]]> </programlisting> </example> </para> <note> <para> If you want to see if a variable exists, use <function>isset</function> as <function>defined</function> only applies to <link linkend="language.constants">constants</link>. If you want to see if a function exists, use <function>function_exists</function>. </para> </note> <para> See also <function>define</function>, <function>constant</function>, <function>get_defined_constants</function>, <function>function_exists</function>, and the section on <link linkend="language.constants">Constants</link>. </para> </refsect1> </refentry> <!-- Keep this comment at the end of the file Local variables: mode: sgml sgml-omittag:t sgml-shorttag:t sgml-minimize-attributes:nil sgml-always-quote-attributes:t sgml-indent-step:1 sgml-indent-data:t indent-tabs-mode:nil sgml-parent-document:nil sgml-default-dtd-file:"../../../../manual.ced" sgml-exposed-tags:nil sgml-local-catalogs:nil sgml-local-ecat-files:nil End: vim600: syn=xml fen fdm=syntax fdl=2 si vim: et tw=78 syn=sgml vi: ts=1 sw=1 -->