PHP でファイルをディレクトリに出力したいのですが、ファイル名にギリシャ文字が含まれているため、出力が文字化けします。
$imagename = $ti[$img_index].'.jpg';
$filepathname = $dirpath ."/".$imagename;
$savefile = fopen($filepathname, 'w');
私は以下のことを試みましたが、成功しませんでした:
$filepathname = mb_convert_encoding($filepathname, 'utf8', 'iso-8859-1');