2002-04-15 00:12:54 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2003-07-02 13:34:09 +00:00
|
|
|
<!-- $Revision: 1.8 $ -->
|
2002-04-15 00:12:54 +00:00
|
|
|
<!-- 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.
|
2003-06-10 04:48:56 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
<example>
|
2002-04-15 00:12:54 +00:00
|
|
|
<title>Checking Constants</title>
|
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
|
|
|
<?php
|
2003-06-21 10:28:05 +00:00
|
|
|
/* Note the use of quotes, this is important. This example is checking
|
|
|
|
* if the string 'CONSTANT' is the name of a constant named CONSTANT */
|
2003-06-10 04:48:56 +00:00
|
|
|
if (defined('CONSTANT')) {
|
2003-03-31 02:05:12 +00:00
|
|
|
echo CONSTANT;
|
2003-06-10 04:48:56 +00:00
|
|
|
}
|
2002-04-15 00:12:54 +00:00
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
</para>
|
2003-06-10 04:48:56 +00:00
|
|
|
<note>
|
|
|
|
<para>
|
2003-07-02 13:34:09 +00:00
|
|
|
If you want to see if a variable exists, use
|
2003-06-10 04:48:56 +00:00
|
|
|
<function>isset</function> as <function>defined</function> only
|
|
|
|
applies to <link linkend="language.constants">constants</link>.
|
2003-07-02 13:18:33 +00:00
|
|
|
If you want to see if a function exists, use
|
2003-07-02 13:11:11 +00:00
|
|
|
<function>function_exists</function>.
|
2003-06-10 04:48:56 +00:00
|
|
|
</para>
|
|
|
|
</note>
|
2002-04-15 00:12:54 +00:00
|
|
|
<para>
|
|
|
|
See also <function>define</function>,
|
|
|
|
<function>constant</function>,
|
2003-06-10 04:48:56 +00:00
|
|
|
<function>get_defined_constants</function>,
|
|
|
|
<function>function_exists</function>, and the section on
|
2002-04-15 00:12:54 +00:00
|
|
|
<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
|
|
|
|
-->
|