在PHP中,我希望將文件輸出到目錄,但文件名包含希臘字符,因此輸出會出現亂碼。如何在php中保存文件,在希臘文中輸出文件名
$imagename = $ti[$img_index].'.jpg';
$filepathname = $dirpath ."/".$imagename;
$savefile = fopen($filepathname, 'w');
我試着做以下,但沒有成功:
$filepathname = mb_convert_encoding($filepathname, 'utf8', 'iso-8859-1');
一個缺點這種方法是,你可能會失去顯著或所有的字符,如果PHP找不到合適的翻譯。 – Halcyon