Exception::getMessage

(PHP 5, PHP 7, PHP 8)

Exception::getMessageGets the Exception message

Опис

final public Exception::getMessage(): string

Returns the Exception message.

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

Returns the Exception message as a string.

Приклади

Приклад #1 Exception::getMessage() example

<?php
try {
throw new
Exception("Some error message");
} catch(
Exception $e) {
echo
$e->getMessage();
}
?>

Поданий вище приклад виведе щось схоже на:

Some error message

Прогляньте також

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top