Exception
PHP Manual

Exception::getCode

(PHP 5 >= 5.1.0)

Exception::getCodeکد استثنا را باز می‌گرداند

Description

final public int Exception::getCode ( void )

بازگرداندن کد استثنا.

Parameters

This function has no parameters.

Return Values

کد استثنا را بصورت integer باز می‌گرداند.

Examples

Example #1 نمونه Exception::getCode()

<?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


Exception
PHP Manual