phpで文字エンコードを変換する(mb_convert_encoding)

$str = "元になっている文字列";

$str = mb_convert_encoding($str, "SJIS", "UTF-8");

ネタ元