I thought ZipArchive::filename would represent the path to the actual zip file, but for every zip file I open with ZipArchive::open(), ZipArchive::filename gives me an empty string.

Example:

$zip = new ZipArchive();
$zip->open( '/some/path/to/zipfile.zip' );
var_dump( $zip->filename );

// expecting:
string(25) "/some/path/to/zipfile.zip"

// but getting:
string(0) ""

Am I misunderstanding ZipArchive::filename, or using it incorrectly perhaps?

Using PHP 5.2.6 on Apache, Windows XP here.

link|improve this question

do you want to open the zip and extract the contents? – Michael L Watson Sep 22 '11 at 13:19
@Michael: I will be extending ZipArchive to represent backup files for which I will only be accepting filenames consisting of numbers (representing a date). I will be extracting files out of and archiving files into the archives. And I want to utilize ZipArchive::filename to give me the basename of the file. – fireeyedboy Sep 22 '11 at 13:26
it is working fine for me with php5.3.1 on win. can you var_dump() the return of the ::open() to see if there is some error? error codes – Einacio Sep 22 '11 at 15:05
@Einacio: I'll try out php > 5.3 myself someday too. Thanks for affirming this. Unfortunately production server will be 5.2 as well. ::open() simply returns true as expected, var_dump() returns object(ZipArchive)#1 (5) { ["status"]=> int(0) ["statusSys"]=> int(0) ["numFiles"]=> int(1450) ["filename"]=> string(0) "" ["comment"]=> string(0) "" }. So at least numFiles actually works as expected (although I'm able to overwrite it, lol). – fireeyedboy Sep 22 '11 at 15:13
"(although I'm able to overwrite it, lol)" is not true actually. My bad. – fireeyedboy Sep 22 '11 at 15:19
show 4 more comments
feedback

1 Answer

up vote 2 down vote accepted

in the changelog for 5.2.9 "Fixed zip filename property read."

try updating your php version

link|improve this answer
Thanks once again! – fireeyedboy Sep 22 '11 at 15:28
feedback

Your Answer

 
or
required, but never shown

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