Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > media > main-release > by-pkgid > ebb1914cf182a88528b4547490db1dd8 > files > 1595

kdewebdev-quanta-doc-3.5.9-2mdv2008.1.x86_64.rpm

<HTML
><HEAD
><TITLE
>Comparison Operators</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.44"><LINK
REL="HOME"
TITLE="PHP Manual"
HREF="manual.html"><LINK
REL="UP"
TITLE="Operators"
HREF="language.operators.html"><LINK
REL="PREVIOUS"
TITLE="Bitwise Operators"
HREF="language.operators.bitwise.html"><LINK
REL="NEXT"
TITLE="Error control Operators"
HREF="language.operators.errorcontrol.html"></HEAD
><BODY
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="NAVHEADER"
><TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>PHP Manual</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="language.operators.bitwise.html"
>Prev</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
>Chapter 10. Operators</TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="language.operators.errorcontrol.html"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><DIV
CLASS="sect1"
><H1
CLASS="sect1"
><A
NAME="language.operators.comparison"
>Comparison Operators</A
></H1
><P
>&#13;     Comparison operators, as their name implies, allow you to compare
     two values.
    </P
><DIV
CLASS="table"
><P
><B
>Table 10-3. Comparison Operators</B
></P
><TABLE
BORDER="1"
CLASS="CALSTABLE"
><TR
><TH
ALIGN="LEFT"
VALIGN="MIDDLE"
>example</TH
><TH
ALIGN="LEFT"
VALIGN="MIDDLE"
>name</TH
><TH
ALIGN="LEFT"
VALIGN="MIDDLE"
>result</TH
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
>$a == $b</TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
>Equal</TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
>True if $a is equal to $b.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
>$a === $b</TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
>Identical</TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
>True if $a is equal to $b, and they are of the same
		type. (PHP4 only)</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
>$a != $b</TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
>Not equal</TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
>True if $a is not equal to $b.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
>$a &#60; $b</TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
>Less than</TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
>True if $a is strictly less than $b.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
>$a &#62; $b</TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
>Greater than</TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
>True if $a is strictly greater than $b.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
>$a &#60;= $b</TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
>Less than or equal to </TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
>True if $a is less than or equal to $b.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
>$a &#62;= $b</TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
>Greater than or equal to </TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
>True if $a is greater than or equal to $b.</TD
></TR
></TABLE
></DIV
><P
>&#13;     Another conditional operator is the "?:" (or trinary) operator,
     which operates as in C and many other languages.
	
	<DIV
CLASS="informalexample"
><P
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="programlisting"
>  1&nbsp;
  2&nbsp;(expr1) ? (expr2) : (expr3);
  3&nbsp;	 </PRE
></TD
></TR
></TABLE
><P
></P
></DIV
> 

	This expression evaluates to <TT
CLASS="replaceable"
><I
>expr2</I
></TT
> if
	<TT
CLASS="replaceable"
><I
>expr1</I
></TT
> evaluates to true, and
	<TT
CLASS="replaceable"
><I
>expr3</I
></TT
> if
	<TT
CLASS="replaceable"
><I
>expr1</I
></TT
> evaluates to false.
   </P
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="language.operators.bitwise.html"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="manual.html"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="language.operators.errorcontrol.html"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>Bitwise Operators</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="language.operators.html"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>Error control Operators</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>