(PHP 7, PHP 8)
Error::getMessage — Gets the error message
final public Error::getMessage ( ) : string
Returns the error message.
This function has no parameters.
Returns the error message as a string.
Example #1 Error::getMessage() example
<?php
try {
    throw new Error("Some error message");
} catch(Error $e) {
    echo $e->getMessage();
}
?> The above example will output something similar to:
Some error message
    © 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
    https://www.php.net/manual/en/error.getmessage.php