Quote:
Originally Posted by Joe Pimms
can any one please please help me
|
PHP Code:
<?
// the location of the zip file and its name
/* windows use full path, ie: c:/www/docs/www/docs/test.zip */
$path_file = './http_docs/files/test.zip';
// type to return ( 0 = files array(), 1 = path and files array )
$type = 0;
// usage
$zip = zip_reader ( $path_file, $type );
// dump the results
print_r ( $zip );
function zip_reader ( $file )
{
$ds = array ();
$io = zip_open ( $file );
if ( $io )
{
while ( $handle = zip_read ( $io ) )
{
$ft = is_zip_dir ( zip_entry_name ( $handle ) );
if ( $ft[0] )
{
if ( $type )
{
$ds[$ft[1]][] = array ( $ft[2], real_size ( zip_entry_filesize ( $handle ) ), real_size ( zip_entry_compressedsize( $handle ) ) );
}
else
{
$ds[] = array ( $ft[2], real_size ( zip_entry_filesize ( $handle ) ), real_size ( zip_entry_compressedsize( $handle ) ) );
}
}
}
zip_close ( $io );
}
return ( $ds );
}
function is_zip_dir ( $in )
{
$out = array ();
$in = trim ( substr ( $in, strpos ( $in, chr ( 47 ) ) ) );
$test = substr ( $in, strrpos ( $in, chr ( 47 ) ) + 1 );
if ( ! empty ( $test ) )
{
$out[] = true;
$out[] = substr ( $in, 0, strrpos ( $in, chr ( 47 ) ) + 1 );
$out[] = $test;
}
else
{
$out[] = false;
$out[] = $in;
$out[] = '';
}
return ( $out );
}
function real_size ( $t )
{
$out = 0;
$math = pow ( 10, 2 );
if ( $t < 1024 )
{
$out = $t . ' bytes';
}
else if ( $t < 1048576 )
{
$out = ( floor( ( $t / 1024 ) * $math ) / $math ) . ' KB';
}
else if ( $t < 1073741824 )
{
$out = ( floor( ( $t / 1048576 ) * $math ) / $math ) . ' MB';
}
return ( $out );
}
?>
C, ya...
Sonia