テックアイエスガイド エディター
無料プログラミング体験会の予約
実行
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
<body>
<?php
$str = "Hello world! وّه";
echo $str . "<br>";
echo convert_cyr_string($str,'w','a');
?>
<p>In this example we convert a string from the ch
aracter-set "w" (windows-1251) to "a" (x-cp866).</
p>
</body>
</html>