0

几天前我开始为我的朋友设计一个博客,他想上传一些图片。

所以这是我使用的代码的简短版本。

<form action="upload.php" method="post" enctype="multipart/form-data">
    <input type="file" name="file" />
    <input type="submit" value="send" />
</form>

<?php
$allowedExts = array("gif", "jpeg", "jpg", "png");
$extension = @ end(explode(".", $_FILES["file"]["name"]));
if ((($_FILES["file"]["type"] == "image/gif") || ($_FILES["file"]["type"] == "image/jpeg") || ($_FILES["file"]["type"] == "image/jpg") || ($_FILES["file"]["type"] == "image/pjpeg") || ($_FILES["file"]["type"] == "image/x-png") || ($_FILES["file"]["type"] == "image/png")) && in_array($extension, $allowedExts)) {
    if ($_FILES["file"]["error"] > 0) {
        echo "Return Code: " . $_FILES["file"]["error"] . "<br>";
    } else {
        if (file_exists("../images/upload/" . $_FILES["file"]["name"])) {
            echo $_FILES["file"]["name"] . " already exists. ";
        } else {
            move_uploaded_file($_FILES["file"]["tmp_name"], "../images/upload/" . $_FILES["file"]["name"]);
        }
    }
}
?>

这段代码在我的电脑上工作,但在朋友的电脑上(他使用相同的浏览器)它不起作用。

我的代码中是否有任何错误,或者有人知道更好的上传方式吗?

老实说,这是一个临时解决方案,我想添加上传进度条之类的东西,所以如果你也知道一种让它看起来更酷、更现代的方法,我将不胜感激。

谢谢你的期待!

4

2 回答 2

0

这是我以前使用过的一个很棒的插件http ://www.uploadify.com/ ...但是你必须为它的 HTML5 版本付费。

http://www.plupload.com/是另一个很棒的插件,虽然它比 Uploadify 更强烈......但是,它是免费的,我相信它也是 Wordpress 实际使用的插件。

于 2013-07-16T15:54:04.873 回答
0

很抱歉答案格式,但我还不能发表评论。你朋友的电脑到底有什么不能用的?对我来说,它似乎正在发挥作用。

于 2013-07-16T15:55:45.317 回答