(PHP 5, PHP 7)
Exception::getCode — İstisnanın numarası ile döner
Exception'dan istisna numarasını integer olarak döndürür fakat Exception çocuklarından başka türde bir değer de dönebilir (örneğin PDOException'dan string).
Bu işlevin değiştirgesi yoktur.
İstisna numarası bir integer olarak döner.
Ö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