简体   繁体   English

使用 unlink 删除图片问题 function

[英]Deleting image problem with unlink function

I created this method to unlink when I update the image but it doesn't work with if not empty if I say empty it deletes.当我更新图像时,我创建了这个方法来取消链接,但如果我说空它会删除,它就不能与 if not empty 一起使用。 it is so strange I tried but didn't work.太奇怪了,我试过了,但没有用。 I tried this without oop it works in another application.我在没有 oop 的情况下尝试了它,它在另一个应用程序中工作。 I changed it for it and I checked google but no solution till now.我为此进行了更改,并检查了谷歌,但直到现在都没有解决方案。 someone used is_uploaded_file on here for the solution but it doesn't work too.有人在这里使用 is_uploaded_file 作为解决方案,但它也不起作用。

    public $tmp_path;
    public $upload_directory = "images"; 

public function picture_path(){
      return $this->upload_directory.DS.$this->filename;
    }
      public function set_file($file) { 

          if(empty($file) || !$file || !is_array($file)) {
            $this->errors[] = "There was no file uploaded here";
            return false;
          }elseif($file['error'] !=0) {
            $this->errors[] = $this->upload_errors_array[$file['error']];
            return false;
          } else {
            $this->filename = basename($file['name']);
            $this->filename = preg_replace('#[^a-z.0-9]#i', '', $this->filename); 
            $kaboom = explode(".", $this->filename); // Split file name into an array using the dot
            $fileExt = end($kaboom); // Now target the last array element to get the file extension
            $this->filename = time().rand().".".$fileExt;
            $this->tmp_path = $file['tmp_name'];
            $this->type     = $file['type'];
            $this->size     = $file['size'];
          }
        }

         public function getordelimage(){
                  static::find_by_id($this->id);
                  $target_path = SITE_ROOT.DS. 'admin' . DS . $this->picture_path();
                  if(empty($this->tmp_path)) { 
                      $this->filename;
                      $this->type;
                      $this->size;      
                  } elseif (!empty($this->tmp_path)) {
                    return unlink($target_path) ? true : false;
                  } else {
                    return false;
                  }
                }
    public function move_image(){
          $target_path = SITE_ROOT.DS. 'admin' . DS . $this->upload_directory . DS . $this->filename;
          return move_uploaded_file($this->tmp_path, $target_path);
        }

        public function delete_photo(){
          if ($this->delete()) {
            $target_path = SITE_ROOT.DS. 'admin' . DS . $this->picture_path();
            return unlink($target_path) ? true : false;
          } else {
            return false;
          }
        }

my edit page:我的编辑页面:

if (empty($_GET['id'])) {
    redirect("photos.php");
} else {
    $photo = Photo::find_by_id($_GET['id']);
    }
if (isset($_POST['update'])) {
    // $photo = Photo::find_by_id($_GET['id']);
    if ($photo) {
        $photo->title = filter_var($_POST['title'], FILTER_SANITIZE_STRING);
        $photo->caption = filter_var($_POST['caption'], FILTER_SANITIZE_STRING);
        $photo->alternate_text = filter_var($_POST['alternate_text'], FILTER_SANITIZE_STRING);
        $photo->description = filter_var($_POST['description'], FILTER_SANITIZE_STRING);


        $photo->set_file($_FILES['filename']);
        $photo->getordelimage();
        $photo->move_image();

        // if ($photo->set_file($_FILES['file'])) {
             $params = [$photo->title, $photo->description, $photo->caption,$photo->alternate_text,
           $photo->filename, $photo->type, $photo->size,
            ];
        // } else {
        //     $params = [$photo->title, $photo->description, $photo->caption,$photo->alternate_text];
        // }

        $photo->save($params);
        $session->message("The {$photo->filename} has been updated");
        redirect("edit_photo.php?id=$photo->id");
    }
}

your answer is hiding in your question:).您的答案隐藏在您的问题中:)。 probably you have problem in your oop database construct check it.可能您的 oop 数据库构造有问题,请检查它。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM