php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #71555 phardata.compress removes same name files in tar archive
Submitted: 2016-02-09 07:51 UTC Modified: 2020-12-15 14:23 UTC
Votes:2
Avg. Score:3.0 ± 0.0
Reproduced:0 of 0 (0.0%)
From: fredrik dot e at gmail dot com Assigned:
Status: Verified Package: PHAR related
PHP Version: Irrelevant OS:
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: fredrik dot e at gmail dot com
New email:
PHP Version: OS:

 

 [2016-02-09 07:51 UTC] fredrik dot e at gmail dot com
Description:
------------
I just realized that phardata.compress removes same name files in tar archives.

I have multiple tar archives that contains multiple instances of files with the same name and when using the code below only the first occurrence of the file is preserved.

Test script:
---------------
<?php
  $p = new PharData('tarFile.tar',0);
  $p->compress(Phar::GZ);
?>

Expected result:
----------------
The expected result is to preserve all files in the archive and just compress it.

Actual result:
--------------
Only first file (with the same name) is preserved.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2020-12-15 14:23 UTC] cmb@php.net
-Status: Open +Status: Verified -Type: Bug +Type: Documentation Problem -PHP Version: 5.5.32 +PHP Version: Irrelevant
 [2020-12-15 14:23 UTC] cmb@php.net
This is not particularly related to compression, but happens
whenever Phar(Data) modifies the archive.  Since Phar(Data)
implements ArrayAccess, there can only ever be at most a single
entry with the same key.  Changing to documentation problem.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Mar 19 10:01:30 2024 UTC