PHP从DELETE请求中获取数据

我正在使用jquery插件进行多个文件上传。 一切都运行正常,除了删除图像。 Firebug说JS正在向函数发送DELETE请求。 如何从删除请求中获取数据?

PHP删除代码:

public function deleteImage() { //Get the name in the url $file = $this->uri->segment(3); $r = $this->session->userdata('id_user'); $q=$this->caffe_model->caffe_get_one_user($r); $cff_name= $q->name; $cff_id = $q->id_caffe; $w = $this->gallery_model->gallery_get_one_user($gll_id); $gll_name = $w->name; $success = unlink("./public/img/caffe/$cff_name/$gll_name/" . $file); $success_th = unlink("./public/img/caffe/$cff_name/$gll_name/thumbnails/" . $file); //info to see if it is doing what it is supposed to $info = new stdClass(); $info->sucess = $success; $info->path = $this->getPath_url_img_upload_folder() . $file; $info->file = is_file($this->getPath_img_upload_folder() . $file); if (IS_AJAX) {//I don't think it matters if this is set but good for error checking in the console/firebug echo json_encode(array($info)); } else { //here you will need to decide what you want to show for a successful delete var_dump($file); } } 

和JS正在使用jQuery-File-Upload插件: link

通常,如果DELETE请求在请求正文中发送数据,则可以使用以下代码读取数据:

 $data = file_get_contents("php://input"); 

根据数据的编码(通常是JSON或表单编码),您可以使用json_decodeparse_str将数据读入可用变量。

有关一个简单示例,请参阅此文章 ,其中作者使用表单编码数据来处理PUT请求。 DELETE工作方式类似。


但是,在您的情况下,看起来文件名是从请求URL中读取的(对$this->uri->segment(3);的调用)。 当我查看你的代码时,似乎变量$gll_id没有被初始化,你也不会检查结果对象$w和变量$gll_name是否为空。 也许这会导致删除失败。 使用ini_set("log_errors",1);启用错误记录ini_set("log_errors",1); 并查看您的服务器错误日志。 如果取消链接失败,错误日志应包含PHP尝试取消链接的路径 – 路径可能不正确。