Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>PHP has</p> <ul> <li><a href="http://de3.php.net/manual/en/function.error-log.php" rel="nofollow"><code>error_log</code></a> — <em>Sends an error message to the web server's error log, a TCP port or to a file</em> and</li> <li><a href="http://de3.php.net/manual/en/function.trigger-error.php" rel="nofollow"><code>trigger_error</code></a> — <em>Generates a user-level error/warning/notice message</em></li> </ul> <p>which you can use to trigger and log the <a href="http://de3.php.net/manual/en/errorfunc.constants.php" rel="nofollow">predefined error types</a>, e.g.</p> <pre><code>trigger_error( "Custom Warning", E_USER_WARNING ); </code></pre> <p>Third party libraries exists with</p> <ul> <li><a href="http://pear.php.net/package/Log/redirected" rel="nofollow">PEAR Log</a> and</li> <li><a href="http://zendframework.com/manual/en/zend.log.html" rel="nofollow">Zend_Log</a></li> </ul> <p>You can configure various destinations to log to. Usage is via an OO interface:</p> <pre><code>$logger-&gt;log('Informational message', Zend_Log::INFO); </code></pre> <p>and there is also the Log4J inspired</p> <ul> <li><a href="http://logging.apache.org/log4php/index.html" rel="nofollow">Log4PHP</a> </li> </ul> <p>Apart from that there is <a href="http://www.xdebug.org/" rel="nofollow">XDebug</a> and <a href="http://www.zend.com/en/products/studio/downloads" rel="nofollow">Zend Debugger</a>. There is also a PECL extension with <a href="http://de3.php.net/manual/en/book.apd.php" rel="nofollow">Advanced PHP Debugger (APD)</a></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload