Exception
PHP Manual

Exception::getCode

(PHP 5 >= 5.1.0, PHP 7)

Exception::getCodeİstisnanın numarası ile döner

Açıklama

final public int Exception::getCode ( void )

İstisna numarasıyla döner.

Değiştirgeler

Bu işlevin değiştirgesi yoktur.

Dönen Değerler

İstisna numarası bir integer olarak döner.

Örnekler

Örnek 1 - Exception::getCode() örneği

<?php
try {
    throw new 
Exception("Bir hata iletisi"30);
} catch(
Exception $e) {
    echo 
"İstisna numarası: " $e->getCode();
}
?>

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

İstisna numarası: 30


Exception
PHP Manual