(PHP 7, PHP 8)
Error::getMessage — Gets 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