downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

Öntanımlı Arayüzler> <ErrorException::__construct
[edit] Last updated: Fri, 23 Dec 2011

view this page in

ErrorException::getSeverity

(PHP 5 >= 5.1.0)

ErrorException::getSeverityİstisnanın önem derecesi ile döner

Açıklama

final public int ErrorException::getSeverity ( void )

İstisnanın önem derecesini döndürür.

Değiştirgeler

Bu işlevin değiştirgesi yoktur.

Dönen Değerler

İstisnanın önem derecesini döndürür.

Örnekler

Örnek 1 - ErrorException::getSeverity() örneği

<?php
try {
    throw new 
ErrorException("İstisna iletisi"075);
} catch(
ErrorException $e) {
    echo 
"Bu istisnanın önem derecesi: " $e->getSeverity();
}
?>

Yukarıdaki örnek şuna benzer bir çıktı üretir:

Bu istisnanın önem derecesi: 75



add a note add a note User Contributed Notes ErrorException::getSeverity
fgaab 08-Mar-2010 06:38
Try this as replacement for error_reporting(...)

<?php
   
function exception_error_handler($errno, $errstr, $errfile, $errline ) {
       
$severity =
           
1 * E_ERROR |
           
1 * E_WARNING |
           
0 * E_PARSE |
           
0 * E_NOTICE |
           
0 * E_CORE_ERROR |
           
0 * E_CORE_WARNING |
           
0 * E_COMPILE_ERROR |
           
0 * E_COMPILE_WARNING |
           
0 * E_USER_ERROR |
           
0 * E_USER_WARNING |
           
0 * E_USER_NOTICE |
           
0 * E_STRICT |
           
0 * E_RECOVERABLE_ERROR |
           
0 * E_DEPRECATED |
           
0 * E_USER_DEPRECATED;
       
$ex = new ErrorException($errstr, 0, $errno, $errfile, $errline);
        if ((
$ex->getSeverity() & $severity) != 0) {
                       throw
$ex;
                }
    }
   
set_error_handler("exception_error_handler");
?>

 
show source | credits | stats | sitemap | contact | advertising | mirror sites