when raising an Exception with no error code explicitly defined, getCode() returns the integer 0
<?php
try {
throw new Exception("no code!!");
} catch (Exception $e) {
print("Code='" . $e->getCode() . "'");
}
?>
outputs
Code='0'
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
ricky at rocker dot com ¶
4 months ago
