PHP Velho Oeste 2024

Exception::getMessage

(PHP 5, PHP 7, PHP 8)

Exception::getMessageİstisna iletisi ile döner

Açıklama

final public Exception::getMessage(): string

İstisna iletisi ile döner.

Bağımsız Değişkenler

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

Dönen Değerler

İstisna iletisi bir dizge olarak döner.

Örnekler

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

<?php
try {
throw new
Exception("Bir hata iletisi");
} catch(
Exception $e) {
echo
$e->getMessage();
}
?>

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

Bir hata iletisi

Ayrıca Bakınız

add a note add a note

User Contributed Notes 1 note

up
0
ctymtce at 126 dot com
8 years ago
U can use get_class_methods($e) to view more methods.
To Top