您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

17 行
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. }