2002-04-15 00:12:54 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2004-10-28 14:08:18 +00:00
|
|
|
<!-- $Revision: 1.10 $ -->
|
2002-04-15 00:12:54 +00:00
|
|
|
<!-- splitted from ./en/functions/var.xml, last change in rev 1.2 -->
|
|
|
|
<refentry id="function.empty">
|
|
|
|
<refnamediv>
|
|
|
|
<refname>empty</refname>
|
2003-05-21 20:42:06 +00:00
|
|
|
<refpurpose>Determine whether a variable is empty</refpurpose>
|
2002-04-15 00:12:54 +00:00
|
|
|
</refnamediv>
|
|
|
|
<refsect1>
|
|
|
|
<title>Description</title>
|
|
|
|
<methodsynopsis>
|
2003-01-21 19:10:29 +00:00
|
|
|
<type>bool</type><methodname>empty</methodname>
|
2002-04-15 00:12:54 +00:00
|
|
|
<methodparam><type>mixed</type><parameter>var</parameter></methodparam>
|
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
2003-05-21 20:42:06 +00:00
|
|
|
<function>empty</function> returns &false; if
|
2004-03-29 18:49:02 +00:00
|
|
|
<parameter>var</parameter> has a non-empty and non-zero value. In
|
2003-05-21 20:42:06 +00:00
|
|
|
otherwords, <literal>""</literal>, <literal>0</literal>,
|
2004-10-28 09:20:59 +00:00
|
|
|
<literal>"0"</literal>, &null;, &false;, <literal>array()</literal>, and
|
|
|
|
<literal>var $var;</literal> are all considered empty. In PHP 4 and
|
2004-10-28 14:08:18 +00:00
|
|
|
earlier, objects with empty properties are considered empty. This is not
|
|
|
|
the case in PHP 5. &true; is returned if <parameter>var</parameter> is empty.
|
2003-05-21 20:42:06 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
<function>empty</function> is the opposite of
|
2002-04-15 00:12:54 +00:00
|
|
|
<literal>(boolean) <parameter>var</parameter></literal>,
|
|
|
|
except that no warning is generated when the variable is not set.
|
|
|
|
See <link linkend="language.types.boolean.casting">converting
|
|
|
|
to boolean</link> for more information.
|
|
|
|
</para>
|
2003-05-21 20:42:06 +00:00
|
|
|
<para>
|
|
|
|
<example>
|
|
|
|
<title>
|
|
|
|
A simple <function>empty</function> / <function>isset</function>
|
|
|
|
comparison.
|
|
|
|
</title>
|
2002-04-15 00:12:54 +00:00
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
2003-05-21 20:42:06 +00:00
|
|
|
<?php
|
2002-04-15 00:12:54 +00:00
|
|
|
$var = 0;
|
|
|
|
|
2003-05-21 20:42:06 +00:00
|
|
|
// Evaluates to true because $var is empty
|
|
|
|
if (empty($var)) {
|
|
|
|
echo '$var is either 0, empty, or not set at all';
|
2002-04-15 00:12:54 +00:00
|
|
|
}
|
|
|
|
|
2003-05-21 20:42:06 +00:00
|
|
|
// Evaluates as true because $var is set
|
|
|
|
if (isset($var)) {
|
|
|
|
echo '$var is set even though it is empty';
|
2002-04-15 00:12:54 +00:00
|
|
|
}
|
2003-05-21 20:42:06 +00:00
|
|
|
?>
|
2002-04-15 00:12:54 +00:00
|
|
|
]]>
|
|
|
|
</programlisting>
|
2003-05-21 20:42:06 +00:00
|
|
|
</example>
|
|
|
|
</para>
|
2002-04-15 00:12:54 +00:00
|
|
|
|
2003-05-21 20:42:06 +00:00
|
|
|
¬e.language-construct;
|
|
|
|
|
|
|
|
<note>
|
|
|
|
<para>
|
|
|
|
<function>empty</function> only checks variables as anything else will
|
|
|
|
result in a parse error. In otherwords, the following will not work:
|
|
|
|
<command>empty(addslashes($name))</command>.
|
|
|
|
</para>
|
|
|
|
</note>
|
2002-04-15 00:12:54 +00:00
|
|
|
<simpara>
|
2003-05-21 20:42:06 +00:00
|
|
|
See also <function>isset</function>,
|
|
|
|
<function>unset</function>,
|
|
|
|
<function>array_key_exists</function>,
|
2003-06-21 16:06:20 +00:00
|
|
|
<function>count</function>,
|
|
|
|
<function>strlen</function>, and
|
|
|
|
<link linkend="types.comparisons">the type comparison tables</link>.
|
2002-04-15 00:12:54 +00:00
|
|
|
</simpara>
|
|
|
|
</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
|
|
|
|
-->
|