¡@

Home 

php Programming Glossary: phardata

PHP Packaging/Deployment [closed]

http://stackoverflow.com/questions/2281338/php-packaging-deployment

creating and manipulating tar and zip files through the PharData class much as PDO provides a unified interface for accessing..

Build Tar file from directory in PHP without exec/passthru

http://stackoverflow.com/questions/333130/build-tar-file-from-directory-in-php-without-exec-passthru

manual en phardata.buildfromdirectory.php php phar new PharData 'project.tar' add all files in the project phar buildFromDirectory..

How can I read a .tar.gz file with PHP?

http://stackoverflow.com/questions/4878792/how-can-i-read-a-tar-gz-file-with-php

share improve this question You can do this with the PharData class Example list files archive new PharData ' some file.tar.gz'.. with the PharData class Example list files archive new PharData ' some file.tar.gz' foreach archive as file echo file n This..

PHP Untar-gz without exec()?

http://stackoverflow.com/questions/9416508/php-untar-gz-without-exec

. There is new class to work on tar archive The PharData class . To extract an archive using PharData extractTo which.. archive The PharData class . To extract an archive using PharData extractTo which work like the ZipArchive extractTo try phar.. which work like the ZipArchive extractTo try phar new PharData 'myphar.tar' phar extractTo ' full path' extract all files catch..