PHP,点击图片上传文件

时间:2016-02-15 08:19:26

标签: javascript php

我有这段代码

<?php
// Upload pictures
$folder = '../images/tmp';
foreach ($_FILES['files']['name'] as $i => $name){
    if (strlen($_FILES['files']['name'][$i]) > 1 && (false !== strpos($_FILES['files']['type'][$i],'image'))){
        if (!move_uploaded_file($_FILES['files']['tmp_name'][$i], $folder.'/'.$name)){
            // Redirect to the Upload form
            header('Location: osi_upload.php');
            exit();
        }
    }
}
?>

在localhost上传图片。之后,我使用此代码:

<?php
    $i = -1;
  foreach(glob($folder.'/*') as $filename){
        $file[++$i] = $filename;
    } ?>

    <form action="draft.php" enctype="multipart/form-data" id="img-frm" method="post"><?php
    // Medium and large devices
    switch($gallery){
        case 1:
        { ?>
            <!--Canvas 1-->
            <div class="col-xs-12 no-pad-left-right hide-sm"><?php
      for($n=0;$n<=$i;$n++){ ?>
                <div class="in-block">
        <label for=<?php echo "img-input[".$n."]"; ?>>
          <img id=<?php echo "img-pict[".$n."]"; ?> src=<?php echo "".$file[$n].""; ?> class="canvas-1">
          <div class="alert-success pad-top-bottom text-center" id=<?php echo "img-name[".$n."]" ?>><strong><?php echo basename($file[$n]); ?></strong></div>
        </label>
        <input type="file" id=<?php echo "img-input[".$n."]"; ?>>
        </div>
        <?php
            } ?>
            </div><?php
            break;
        }
...

预览我上传的图片。如果需要,我可以单击其中一个图像打开上载文件对话框以更改相应的图像。要更改图像,我使用以下javascript代码:

$(document).ready(function(){
    // Change clicked pictures
    if(!$('#img-frm input[type="file"]')){
        return;
    }
    $('#img-frm input[type="file"]').change(function(){
        // Get the input number
        var str = this.id.split("[");
        var i = str[1].substr(0,str[1].length-1);
        var s = 'img-pict[' + i + ']';
        // Get the new picture address
        var new_img = window.URL.createObjectURL(this.files[0]);
        // Preview the new picture
        document.getElementById(s).src = new_img;
        str = $(this).val().split("\\");
        var n = str.length;
        s = 'img-name[' + i + ']';
        document.getElementById(s).innerHTML = str[n-1];
    });
});

所有这些代码都运行良好。我的问题是在点击图像预览后更改替换图像。我无法弄清楚如何在PHP中,我更喜欢,我可以更改服务器上的图像。我试图在更改后提交表单,但在接收文件中,我什么都没得到!空白!有人可以帮忙。

可能知道表单的其余部分由文本输入,区域,选择和日期输入组成是很重要的。当我对这些进行更改时,我会在接收文件中找到其他表单元素的帖子。对预览图像所做的更改不会发布。

确定!我想我是通过这个方式开始的方式!!! 假设javascript在post表单中处理$ _FILES数组有些麻烦,我在HTML文件中添加了一个隐藏的输入:

<label for=<?php echo "img-input[".$n."]"; ?>>
          <img id=<?php echo "img-pict[".$n."]"; ?> src=<?php echo "".$file[$n].""; ?> class="canvas-1">
          <div class="alert-success pad-top-bottom text-center" id=<?php echo "img-name[".$n."]" ?>><strong><?php echo basename($file[$n]); ?></strong></div>
        </label>
        <input type="file" id=<?php echo "img-input[".$n."]"; ?> name=<?php echo "img-input[".$n."]"; ?>>
        <input type="hidden" value=<?php echo "".$file[$n].""; ?> name=<?php echo "img-hidden[".$n."]"; ?> id=<?php echo "img-hidden[".$n."]"; ?>>

发布后检索文件网址。我已经更改了我的javascript文件来处理隐藏的输入:

$('#img-frm input[type="file"]').change(function(){
// Get the input number
var str = this.id.split("[");
var i = str[1].substr(0,str[1].length-1);
var s = 'img-pict[' + i + ']';
// Get the new picture address
var new_img = window.URL.createObjectURL(this.files[0]);
// Preview the new picture
document.getElementById(s).src = new_img;
s = 'img-hidden[' + i + ']';
document.getElementById(s).value = new_img;
str = $(this).val().split("\\");
var n = str.length;
s = 'img-name[' + i + ']';
document.getElementById(s).innerHTML = str[n-1];
});

我得到了这个:

Array ( [img-hidden] => Array ( [0] => blob:http://localhost/f8e7a5af-76fa-4da1-b489-387b55395873 [1] => ../images/tmp/templatemo_portfolio02.jpg [2] => ../images/tmp/templatemo_portfolio03.jpg [3] => ../images/tmp/templatemo_portfolio04.jpg [4] => ../images/tmp/templatemo_portfolio05.jpg [5] => ../images/tmp/templatemo_portfolio06.jpg [6] => ../images/tmp/templatemo_portfolio07.jpg [7] => ../images/tmp/templatemo_portfolio08.jpg )

请注意,数组 [img-hidden] 中的第一个索引是 blob ,这是新图片的网址(请记住我点击图片后)改变它)。是否可以使用该网址上传该图片?怎么样? (请注意,所有图片都需要上传到最终目的地,但我没有处理其他文件的问题。只有我不知道 blobs

1 个答案:

答案 0 :(得分:0)

我很困惑:D 经过大量的搜索,我取消了我所做的一切,并重新尝试了原始代码,它正在运行。我想我在接收文件中有一个拼写错误或类似的东西。我认为print_r($_FILE);代替print_r($_FILES);我不知道。

事实上,实际的挑战是在预览修改(最终)之后将图像上传到服务器。一次上传多张图片并根据特定画布显示,具体取决于它们的数量和尺寸。

而不是使用非常复杂的(至少对我来说!)AJAX API来与服务器通信,我更倾向于寻找一种解决方案,其中每种语言都可以按照预期的方式发挥自己的游戏。

因此,我使用HTML来实现这样一个事实:我可以点击图像并打开上传对话框来选择另一个图像来替换之前的图像。

<label for=<?php echo "img-input[".$n."]"; ?>>
          <img id=<?php echo "img-pict[".$n."]"; ?> src=<?php echo "".$file[$n].""; ?> class="canvas-1">
        </label>
        <input type="file" id=<?php echo "img-input[".$n."]"; ?> name=<?php echo "img-input[".$n."]"; ?>>

label输入for=属性是关键。

要使替换在不重新加载文件的情况下进行操作,当然我使用javascript和一些JQuery(不是必需但很有趣)

$(document).ready(function(){
    // Change clicked pictures
    if(!$('#img-frm input[type="file"]')){
        return;
    }
    $('#img-frm input[type="file"]').change(function(){
        // Get the input number
        var str = this.id.split("[");
        var i = str[1].substr(0,str[1].length-1);
        var s = 'img-pict[' + i + ']';
        // Get the new picture address
        var new_img = window.URL.createObjectURL(this.files[0]);

        // Preview the new picture
        document.getElementById(s).src = new_img;
        str = $(this).val().split("\\");
        var n = str.length;
        s = 'img-name[' + i + ']';
        document.getElementById(s).innerHTML = str[n-1];
    });
});

在第var new_img = window.URL.createObjectURL(this.files[0]);行中,生成您选择替换预览的图片的网址,在第document.getElementById(s).src = new_img;行中,图片会加载到您之前点击的预览位置。路径由表单发送,并创建$_FILES数组。您现在可以使用PHP上传。

尽管我犯了可笑的拼写错误,但我希望这会有所帮助。我通过网络看到了很多关于类似问题的奇怪答案。