You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 line
314B

  1. <?php
  2. namespace App\Util;
  3. class EncodingUtil
  4. {
  5. public static function toUtf8FromSjis(string $source)
  6. {
  7. return mb_convert_encoding($source, "UTF8", 'SJIS');
  8. }
  9. public static function toSjisFromUtf8(string $source)
  10. {
  11. return mb_convert_encoding($source, "SJIS", 'UTF8');
  12. }
  13. }