|
|
|
You can extract any sort of Archive (Tar, Gzip, Zip) to any selected path using 3 line codes :
| <?php
require 'ArchiveExtractor.class.php';
/* Init. ArchiveExtractor Object */
$archExtractor=new ArchiveExtractor();
/* Extract */
// -Archive -Path
$extractedFileList=$archExtractor->extractArchive("Desktop.zip",".");
?>
<pre>
<?php print_r($extractedFileList); ?>
</pre> | | |
|
| Remote Archive (Zip, Tar, Gzip) downloader with FTP and local extration support Categories : PHP, FTP, Filesystem, PHP Classes, Compression | | | file class , uploade file , download file already uploaded on another website Categories : PHP, PHP Classes, Filesystem, Web Services | | | Class that allows the PHP developer to create and manage UNIX like password files suitable for use as Apache authentication password files.
Categories : HTTP, PHP, PHP Classes, Filesystem | | | HTTP gzip compression Categories : PHP, PHP Classes, Compression, Zlib | | | A File Browser Class.To Read Drives,Directories and Files .Files writing is also possible Categories : PHP, PHP Classes, Filesystem | | | Easy upload class Categories : PHP Classes, Filesystem, HTTP, PHP | | | An efficient iterative and buffered text file reader Categories : PHP, Classes and Objects, Filesystem, PHP Classes, Log Files | | | Search and Replace Text : Searches Files for Specified Text and Replaces It by a Given Text Categories : PHP, PHP Classes, Search, Filesystem | | | Bs_IniHandler is a class that can read and write ini-style files (and strings) Categories : PHP, Filesystem, PHP Classes | | | PHP ZIP file creation on a linux box using exec. Create ZIP files containing images Categories : PHP, Compression, Filesystem | | | Compare two texts and display a block of text with the differences between them. Categories : PHP, PHP Classes, Filesystem, Strings, Arrays | | | PHP4 DirectoryIterator Class Categories : PHP, PHP Classes, Filesystem, Directories | | | PHP Zip Utility Categories : PHP, PHP Classes, Compression | | | filesplit : Split big text files in multiple small ones Categories : PHP, Log Files, Filesystem, PHP Classes | | | PHP Transfer data from text file to Mysql Table Categories : PHP, PHP Classes, Filesystem, Databases, MySQL | |
|
|
|