(PHP 4, PHP <=5.2.0)
Returns error message of last Informix call
string ifx_errormsg ([ int $errorcode ] )
Returns the Informix error message associated with the most recent Informix error.
Parameters:
errorcode
If specified, the function will return the message corresponding to the specified code.
Returns:
Return the error message, as a string.
Examples:
ifx_errormsg() example
1 2 3 | <?php printf( "%s\n<br>" , ifx_errormsg(-201)); ?> |
See also:
Please login to continue.