$hoge = mb_convert_encoding($hoge, 'UTF-8','auto');
元のエンコードは「auto」が便利
Unable to detect character encodingの警告が出る場合は
mb_language("Japanese"); $hoge = mb_convert_encoding($hoge, 'UTF-8','auto');
$hoge = mb_convert_encoding($hoge, 'UTF-8','auto');
元のエンコードは「auto」が便利
Unable to detect character encodingの警告が出る場合は
mb_language("Japanese"); $hoge = mb_convert_encoding($hoge, 'UTF-8','auto');