戻る

解答例

PHP

<?php
header("Content-type: text/html; charset=utf-8");

$html = file_get_contents("data/FIFARank.txt");

$html = mb_convert_encoding($html, "utf-8", "shift_jis");

echo $html;
?>

inserted by FC2 system