2011-11-08 42 views

回答

3

如果您使用的plupload例子,然后重命名很可能是由这个代码导致提供的原始文件upload.php的:

// Clean the fileName for security reasons 
$fileName = preg_replace('/[^\w\._]+/', '', $fileName); 

你应该修改正则表达式的代码,以适应您的文件命名要求。

+0

Tnx!它正在工作! – domagojk