<?php
require 'ezc-setup.php';

$archive ezcArchive::opendirname__FILE__ ) . '/test-archive.zip' );
foreach( 
$archive as $entry )
{
    if ( 
$entry->getPath() == 'archive-logo.jpg' )
    {
        
$dir dirname__FILE__ );
        echo 
"Extracting {$entry->getPath()} to $dir.<br/><br/>\n";
        
$archive->extractCurrent$dir );
    }

    echo 
$entry"\n";
}
?>
Output