在 PHP 中,我想将文件输出到目录,但文件名包含希腊字符,因此输出是乱码。
$imagename = $ti[$img_index].'.jpg';
$filepathname = $dirpath ."/".$imagename;
$savefile = fopen($filepathname, 'w');
我尝试执行以下操作但没有成功:
$filepathname = mb_convert_encoding($filepathname, 'utf8', 'iso-8859-1');