.*?!ims"; // ファイルを文字列としてロード $str = file_get_contents($load_file); // ファイルがあった場合 if( $str != FALSE ) { // 範囲除去 $str = preg_replace($delete_tag, "", $str); // UTF-8変換 // $str = JcodeConvert($str , 0, 4); $str = mb_convert_encoding($str , "UTF-8", "auto"); // 変換したファイルを表示させる echo $str; } ?>