yp_err_string

(PHP 4 >= 4.0.6, PHP 5 <= 5.0.5)
Returns the error string associated with the given error code
string yp_err_string ( int $errorcode )

Returns the error message associated with the given error code. Useful to indicate what exactly went wrong.

Parameters:
errorcode

The error code.

Returns:

Returns the error message, as a string.

Examples:
Example for NIS errors
1
2
3
<?php
echo "Error: " . yp_err_string(yp_errno());
?>
See also:

yp_errno() -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.