Description
string
iconv
( string in_charset, string out_charset, string str)
It
converts
the
string
string
encoded
in
in_charset
to
the
string
encoded
in
out_charset
.
דוגמה
1
.
iconv(
)
example
:
echo
iconv(
"ISO-8859-1"
,"UTF-8"
,"This
is
test
.")
;
|
|