-3

我正在寻找一个 ajax php 上传器来上传多个文件,我找到了一些,但不幸的是它们无法在 IE 上成功运行,因为 IE 7 和 8 不支持 HTML5。

Uploadify & Plupload 与 IE 中的 flash 一起工作正常,但在上传文件后它们没有返回任何内容。作为响应,我想要修改后的文件名,因为在上传文件之前我会修改文件名。

任何帮助或建议都会受到高度评价。

谢谢高拉夫

4

1 回答 1

0

Please refer this link for multiple file uploads using uploadify php - file uploads using uploadify

and in that link(in uploadify.php) replace the line

$fna = $_FILES['Filedata']['name'];

with

$fna = "your modified new filename";
于 2012-04-24T10:38:12.260 回答