(PHP 5 >= 5.1.0, PHP 7)
Gets the Exception code
final public mixed Exception::getCode ( void )
Returns the Exception code.
Returns:
Returns the exception code as integer in Exception but possibly as other type in Exception descendants (for example as string in PDOException).
Examples:
Exception::getCode() example
1 2 3 4 5 6 7 | <?php try { throw new Exception( "Some error message" , 30); } catch (Exception $e ) { echo "The exception code is: " . $e ->getCode(); } ?> |
The above example will output something similar to:
The exception code is: 30
See also:
Please login to continue.