IntlGlobals
class IntlGlobals
Provides fake static versions of the global functions in the intl extension.
Constants
U_ZERO_ERROR |
Indicates that no error occurred. |
U_ILLEGAL_ARGUMENT_ERROR |
Indicates that an invalid argument was passed. |
U_PARSE_ERROR |
Indicates that the parse() operation failed. |
Methods
Returns whether the error code indicates a failure.
Returns the error code of the last operation.
Returns the error message of the last operation.
Returns the symbolic name for a given error code.
Sets the current error.
Details
at line line 76
static bool
isFailure(int $errorCode)
Returns whether the error code indicates a failure.
at line line 89
static int
getErrorCode()
Returns the error code of the last operation.
Returns IntlGlobals::UZEROERROR if no error occurred.
at line line 101
static string
getErrorMessage()
Returns the error message of the last operation.
Returns "UZEROERROR" if no error occurred.
at line line 113
static string
getErrorName(int $code)
Returns the symbolic name for a given error code.
at line line 130
static
setError(int $code, string $message = '')
Sets the current error.