为简单起见,我使用XHR将文件上传到网站。这些文件被重命名并“清理”(特殊字符等),然后将其名称保存在数据库中并将其存储在我的文件夹中。
当我从Mac上传任何类型的文档,其中包含任何奇怪的字符时,它运行非常平稳,没有人受伤。 当我在运行Windows的PC上尝试使用完全相同的文件进行相同操作时,我的文件未重命名。最糟糕的是,特殊字符被问号替换,然后就无法从我的FTP中删除它们。
我刚刚尝试对正则表达式进行一些更改,但我感到困惑,因为它可以在Mac上运行,但不能在Windows上运行。因此,我想这可能与操作系统在上传之前如何传输文件编码或类似内容有关。
这是我的JS:
$("#assist-form").submit(function() {
var str = $(this).serialize(),
progress = document.getElementById("progress"),
bar = document.getElementById("progress-bar"),
percent = document.getElementById("percent");
$.ajax({
xhr: function() {
var xhr = new window.XMLHttpRequest();
progress.style.display="block";
xhr.upload.addEventListener("progress", function(evt) {
if (evt.lengthComputable) {
var percentComplete = evt.loaded / evt.total;
percentComplete = parseInt(percentComplete * 100);
var percentVal = percentComplete + "%";
bar.style.width=percentVal;
//console.log(percentVal);
percent.innerHTML = percentVal;
}
}, false);
return xhr;
},
type: "POST",
url: "'.CONTROLLERS.'assistManage.php",
data: new FormData( this ),
processData: false,
contentType: false,
dataType: "json",
success: function(msg) {
if (msg.result == 0 || msg.result == 1 || msg.result == 2) {
window.location.href="'.ASSISTS.'&resu="+msg.result+"";
} else {
$.bootstrapGrowl(msg.result, {
type: "danger",
width: "350"
});
}
}
});
return false;
});
以及我处理文件的PHP部分:
if ( isset($_FILES['files']) && $_FILES["files"]["error"][0] == 0 )
{
$allowed = array('png', 'jpg', 'gif', 'xls', 'xlsx', 'doc', 'docx', 'pdf', 'eml', 'msg', 'rtf');
$docs = $_FILES['files'];
foreach ( $docs['tmp_name'] as $key => $tmp_name )
{
$file_ext = pathinfo($docs['name'][$key], PATHINFO_EXTENSION);
$file_name = Engine::cleanStr($docs['name'][$key], true);
$file_size = $docs['size'][$key];
$file_name_final = 'assist_'.$id.'-'.$file_name;
if ( !in_array(strtolower($file_ext), $allowed) )
$error .= $file_name.' : format de fichier non autorisé<br />';
elseif ( $file_size > 5000000 ) // 5 Mb
$error .= $file_name.' : fichier trop lourd<br />';
else
{
if ( move_uploaded_file($tmp_name, '../'.UPLOADS.$file_name_final) )
$req .= "INSERT INTO ".PREFIX."files VALUES ('0', '$id', '$file_name_final');";
else
$error .= $file_name.' : Erreur à l\'upload du fichier';
}
}
}
我的功能是“清除”文件名:
static function cleanStr ( $txt, $punctuation = false )
{
$txt = trim($txt);
$txt = str_replace('œ', 'oe', $txt);
$txt = str_replace('Œ', 'Oe', $txt);
$txt = str_replace('æ', 'ae', $txt);
$txt = str_replace('Æ', 'Ae', $txt);
$txt = str_replace('²', '2', $txt);
$txt = str_replace('³', '3', $txt);
$txt = str_replace('°', '', $txt);
$txt = iconv("UTF-8", "ISO-8859-1//IGNORE", $txt);
if ( $punctuation )
{
$punct_array = array(',', ':', ';', '?', '!', '(', ')', '[', ']', '#', '&');
$punct_array2 = array(' ', "'", '---', '--');
$txt = str_replace($punct_array, '' , $txt);
$txt = str_replace($punct_array2, '-' , $txt);
}
return strtolower($txt);
}
总而言之,从Mac上传的文件名(例如“Reçu-de-billet-électronique.txt”)从Mac上上传后会变成“ recu-de-billet-electronique.txt”和“ re?u-de-billet-?”。 lectronique.txt”从Windows上传。
完全相同的文件,位于完全相同的站点上,具有完全相同的脚本,但结果完全不同。 我不知道在哪里看。
答案 0 :(得分:0)
尝试更换
$txt = iconv("UTF-8", "ISO-8859-1//IGNORE", $txt);
与此一起
setlocale(LC_CTYPE, 'cs_CZ');
$txt = iconv('UTF-8', 'ASCII//IGNORE', $txt);