Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > by-pkgid > ebb1914cf182a88528b4547490db1dd8 > files > 421

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

<HTML
><HEAD
><TITLE
>Error handling</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="Features"
HREF="features.html"><LINK
REL="PREVIOUS"
TITLE="Features"
HREF="features.html"><LINK
REL="NEXT"
TITLE="Creating GIF images"
HREF="features.images.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="features.html"
>Prev</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="features.images.html"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><DIV
CLASS="chapter"
><H1
><A
NAME="features.error-handling"
>Chapter 14. Error handling</A
></H1
><P
>&#13;   There are 4 types of errors and warnings in PHP.  They are:

   <P
></P
><UL
><LI
><P
>1 - Normal Function Errors</P
></LI
><LI
><P
>2 - Normal Warnings</P
></LI
><LI
><P
>4 - Parser Errors</P
></LI
><LI
><P
>8 - Notices (warnings you can ignore but which
     may imply a bug in your code)</P
></LI
></UL
></P
><P
>&#13;   The above 4 numbers are added up to define an error reporting
   level.  The default error reporting level is 7 which is 1 + 2 + 4,
   or everything except notices.  This level can be changed in the
   php3.ini file with the error_reporting directive.  It can also be
   set in your Apache httpd.conf file with the php3_error_reporting
   directive or lastly it may be set at runtime within a script using
   the <A
HREF="function.error-reporting.html"
><B
CLASS="function"
>error_reporting()</B
></A
> function.</P
><P
>	
   All <A
HREF="language.expressions.html"
>PHP expressions</A
> can also be called
   with the "@" prefix, which turns off error reporting for that particular
   expression.  If an error occurred during such an expression and the
   <A
HREF="configuration.html#ini.track-errors"
>track_errors</A
> feature
   is enabled, you can find the error message in the global variable
   $php_errormsg.</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="features.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="features.images.html"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>Features</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="features.html"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>Creating GIF images</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>