(No version information available, might only be in Git)
Error::getCode — Gets the error code
Cette fonction ne contient aucun paramètre.
Returns the error code as integer
Exemple #1 Error::getCode() example
<?php
try {
throw new Error("Some error message", 30);
} catch(Error $e) {
echo "The Error code is: " . $e->getCode();
}
?>
L'exemple ci-dessus va afficher quelque chose de similaire à :
The Error code is: 30