PHP 8.4.0 RC4 available for testing

Exception::getCode

(PHP 5, PHP 7, PHP 8)

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

Açıklama

final public Exception::getCode(): int

Exception'dan istisna numarasını int olarak döndürür fakat Exception çocuklarından başka türde bir değer de dönebilir (örneğin PDOException'dan string).

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

İstisna numarası bir int 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

Ayrıca Bakınız

add a note

User Contributed Notes 3 notes

up
76
talksonweb at gmail dot com
11 years ago
The exception code can be used to categorize your errors. If you're wondering what the exception code can be used for, read on below.

Let's say each time your application isn't able to connect to the database, you can save the error message under the error/exception code 214. At the end of the month, you can do a quick search on the error number '214' and find out how many times this error occurred. This makes life easier. Also, the error/exception message will give you details into what happened.

The point is to use both the exception message and code. It's helpful in the long run.

Note: I added this note, because I was confused earlier as to the purpose of the exception code and it's use.
up
29
ricky at rocker dot com
11 years ago
when raising an Exception with no error code explicitly defined, getCode() returns the integer 0

<?php
try {
throw new
Exception("no code!!");
} catch (
Exception $e) {
print(
"Code='" . $e->getCode() . "'");
}
?>

outputs

Code='0'
up
8
2M
3 years ago
Do not use the strict operator as suggested when checking the Exception Code in \PDOException.
As per documentation: \PDOException is returning a string for its Exception Code and not an Integer.

Ran into the following in PHP8:
<?php

catch(\PDOException $e) {
var_dump($e->getCode()); //Output: string(5) "23000"
}

?>
To Top