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
Have you experienced this issue?
Rate the importance of this bug to you:

 [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 05:01:29 2024 UTC