(PHP 6 >= 6.0.0)
unicode_set_error_mode — Set the error mode for strings conversions
This function sets the error mode for string conversions between different encodings. An error can occur during conversion when an illegal character is encountered or if a character cannot be represented into the new encoding. By default, when an error is encountered, the conversion stops.
The direction sets the conversion direction to which the error mode will apply. This can either be FROM_UNICODE, which will set the error mode for conversions from a unicode string to a binary string or TO_UNICODE, which will set the error mode for conversions from a binary string to a unicode string.
mode determines how the conversion errors are handled. It should be one of the following constants:
Mode | Description |
---|---|
U_CONV_ERROR_STOP | Stop the conversion. This is the default mode. |
U_CONV_ERROR_SKIP | Skip the character. |
U_CONV_ERROR_SUBST | Substitute the character. The substituting character can be set with unicode_set_subst_char(). |
U_CONV_ERROR_ESCAPE_UNICODE | Escape the faulty bytes and represent them in the Unicode character format. |
U_CONV_ERROR_ESCAPE_ICU | Escape the faulty bytes and represent them in the ICU character format. |
U_CONV_ERROR_ESCAPE_JAVA | Escape the faulty bytes and print them in the Java character format. |
U_CONV_ERROR_ESCAPE_XML_DEC | Escape the faulty bytes and represent them in decimal format. |
U_CONV_ERROR_ESCAPE_XML_HEX | Escape the faulty bytes and represent them in hexadecimal format. |
성공할 경우 TRUE를, 실패할 경우 FALSE를 반환합니다.
Emits a E_WARNING level error if the direction or the mode are invalid.
이 함수는 실험적입니다. 이 함수의 작동, 함수의 이름, 그리고 관련된 모든 문서는 이후의 PHP 릴리즈에서 예고 없이 변경할 수 있습니다. 이 함수의 사용에 관한 것은 사용자 책임입니다.