Skip to content

Instantly share code, notes, and snippets.

@nimid
Created May 16, 2019 07:28
Show Gist options
  • Save nimid/a704a8bd48005a076ed82e0945b5c053 to your computer and use it in GitHub Desktop.
Save nimid/a704a8bd48005a076ed82e0945b5c053 to your computer and use it in GitHub Desktop.
<?php
$file = fopen('utf8.txt', 'r');
$content = fread($file, filesize('utf8.txt'));
$converted_content = mb_convert_encoding($content, 'SJIS', 'UTF-8');
echo $converted_content;
$fp = fopen('sjis.txt', 'w');
fwrite($fp, $converted_content);
fclose($fp);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment