获取上传的文件

时间:2013-04-09 16:06:10

标签: php fine-uploader

我想实现删除当前上传文件的删除功能。

如何获取当前上传的文件?

以下是我在javascript中的内容:

$('.deleteButton').click(function (){ 
             $imagefile = '../uploads/cv.jpg';
            //Make ajax call
            $.ajax({
             type: "POST",
              data:{
                        action: 'deleteButton',
                        imagefile: $imagefile,
                    },
                    url: "php/deleteImage.php"
            });


        }); 

我的PHP文件:

  <?php
        if($_POST["action"]=="deleteButton") {
                 $imagefile = $_REQUEST['imagefile'];
          unlink($imagefile);
    }
  ?>

现在,我没有为$ imagefile设置静态值,而是想抓取上传的文件。

0 个答案:

没有答案