Any idea what I am doing wrong here? It keeps dying with 'bye bye'. There is an index.php file inside the zip archive.

$zip = new ZipArchive;
$zip->open($source);
$test = $zip->getFromName('index.php');
if(!$test) {
    die('bye bye');
} else {
    die($test);
}
link|improve this question

Is this the same zip file as with your last question, where everything was contained within an example/ subdirectory? – mario Sep 27 '11 at 7:02
verify if the instruction $zip->open($source) returns TRUE. If it fails then you have problem with opening the archive so for sure also the getFromName will fail – ab_dev86 Sep 27 '11 at 7:03
feedback

1 Answer

up vote 1 down vote accepted

Well, the first thing you should do is ensure that you've opened it okay since that can fail as well:

$zip = new ZipArchive;
$rc = $zip->open($source);
if ($rc === TRUE) {
    $test = $zip->getFromName('index.php');
    $zip.close();
    if(!$test) {
        die('bye bye');
    } else {
        die($test);
    }
} else {
    die("could not open: " . $rc);
}

Other than that, make sure you are absolutely certain that your file specification is correct. If necessary, you can use getNameIndex to enumerate the entries one at a time, printing out their names in the process, something like:

$zippy = new ZipArchive();
$zippy->open($source);
for ($i = 0; $i < $zippy->numFiles; $i++) {
    echo $zippy->getNameIndex($i) . '<br />'
}
$zippy.close();

And I'm assuming that I would be wasting my time telling you to check the value of $source. You may want to check, just in case.

link|improve this answer
Snap! Did exactly that with getNameIndex. Worked out that I am idiot. The zip file I had prepared had the folder structure in it because I forgot to jsut select all my individual files and compress them together. So I needed to use $zip->getFromName("example/index.php"); Now I've compressed the files correctly. That took me way too long to work out. Also regarding the check, I have it in the script but didn't put it here sorry. Good to know for anyone else who comes across this question. – Ben J. Sep 27 '11 at 7:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.