deleteName example


  public function add($file_path) {
    $this->zip->addFile($file_path);

    return $this;
  }

  /** * {@inheritdoc} */
  public function remove($file_path) {
    $this->zip->deleteName($file_path);

    return $this;
  }

  /** * {@inheritdoc} */
  public function extract($path, array $files = []) {
    if ($files) {
      $this->zip->extractTo($path$files);
    }
    
Home | Imprint | This part of the site doesn't use cookies.