| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/piwik/vendor/matomo/decompress/src/ |
Upload File : |
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/lgpl-3.0.html LGPL v3 or later
*/
namespace Matomo\Decompress;
use Archive_Tar;
/**
* Unzip implementation for Archive_Tar PEAR lib.
*/
class Tar implements DecompressInterface
{
/**
* Archive_Tar instance.
*
* @var Archive_Tar
*/
private $tarArchive = null;
/**
* Constructor.
*
* @param string $filename Path to tar file.
* @param string|null $compression Either 'gz', 'bz2' or null for no compression.
*/
public function __construct($filename, $compression = null)
{
$this->tarArchive = new Archive_Tar($filename, $compression);
}
/**
* Extracts the contents of the tar file to $pathExtracted.
*
* @param string $pathExtracted Directory to extract into.
* @return bool true if successful, false if otherwise.
*/
public function extract($pathExtracted)
{
return $this->tarArchive->extract($pathExtracted);
}
/**
* Extracts one file held in a tar archive and returns the deflated file
* as a string.
*
* @param string $inArchivePath Path to file in the tar archive.
* @return bool true if successful, false if otherwise.
*/
public function extractInString($inArchivePath)
{
return $this->tarArchive->extractInString($inArchivePath);
}
/**
* Lists the files held in the tar archive.
*
* @return array List of paths describing everything held in the tar archive.
*/
public function listContent()
{
return $this->tarArchive->listContent();
}
/**
* Get error status string for the latest error.
*
* @return string
*/
public function errorInfo()
{
return $this->tarArchive->error_object->getMessage();
}
}