(No version information available, might only be in Git)
Error::getMessage — Gets the error message
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