mb_convert_kana() performs "han-kaku" -
"zen-kaku" conversion for string str. It
returns converted string. This function is only useful for
Japanese.
option is conversion option. Default value
is "KV".
encoding is character encoding. If it is
omitted, internal character encoding is used.
Specify with combination of following options. Default
value is KV.
Table 1. Applicable Conversion Options
Option
Meaning
r
Convert "zen-kaku" alphabets to "han-kaku"
R
Convert "han-kaku" alphabets to "zen-kaku"
n
Convert "zen-kaku" numbers to "han-kaku"
N
Convert "han-kaku" numbers to "zen-kaku"
a
Convert "zen-kaku" alphabets and numbers to "han-kaku"
A
Convert "han-kaku" alphabets and numbers to "zen-kaku"
(Characters included in "a", "A" options are
U+0021 - U+007E excluding U+0022, U+0027, U+005C, U+007E)
s
Convert "zen-kaku" space to "han-kaku" (U+3000 -> U+0020)
S
Convert "han-kaku" space to "zen-kaku" (U+0020 -> U+3000)
k
Convert "zen-kaku kata-kana" to "han-kaku kata-kana"
K
Convert "han-kaku kata-kana" to "zen-kaku kata-kana"
h
Convert "zen-kaku hira-gana" to "han-kaku kata-kana"
H
Convert "han-kaku kata-kana" to "zen-kaku hira-gana"
c
Convert "zen-kaku kata-kana" to "zen-kaku hira-gana"
C
Convert "zen-kaku hira-gana" to "zen-kaku kata-kana"
V
Collapse voiced sound notation and convert them into a character. Use with "K","H"
Example 1. mb_convert_kana() example
<?php /* Convert all "kana" to "zen-kaku" "kata-kana" */ $str = mb_convert_kana($str, "KVC");
/* Convert "han-kaku" "kata-kana" to "zen-kaku" "kata-kana" and "zen-kaku" alpha-numeric to "han-kaku" */ $str = mb_convert_kana($str, "KVa"); ?>
Php mb convert kana Function syntax tag
mb convert kana php code on this is provided for your study purpose, it will guide you to know how create and design a website using php. use it to practice and train your self online
Php mb convert kana syntax tutorial
php tutorial guide and code design are for easy learning and programming. The code practice section provided at the top is for practising of this syntax. Use the code section up to practice your php programming online. Learning php is very easy, all you need is to use the examples on this site and practice them to perfect your skills.