mb_substitute_character
(PHP 4 >= 4.0.6, PHP 5)
mb_substitute_character — Set/Get substitution character
Parameters
-
substrchar
-
Specify the Unicode value as an integer,
or as one of the following strings:
-
"none" : no output
-
"long" : Output character code value (Example: U+3000,JIS+7E7E)
Return Values
If substchar
is set, it returns TRUE for success,
otherwise returns FALSE.
If substchar
is not set, it returns the Unicode value,
or "none" or "long".
Examples
Example #1 mb_substitute_character() example
<?php
mb_substitute_character(0x3013);
mb_substitute_character("long");
echo mb_substitute_character();
?>