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.
ZipArchiveto 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 utilizeZipArchive::filenameto give me the basename of the file. – fireeyedboy Sep 22 '11 at 13:26php > 5.3myself someday too. Thanks for affirming this. Unfortunately production server will be5.2as well.::open()simply returnstrueas expected,var_dump()returnsobject(ZipArchive)#1 (5) { ["status"]=> int(0) ["statusSys"]=> int(0) ["numFiles"]=> int(1450) ["filename"]=> string(0) "" ["comment"]=> string(0) "" }. So at leastnumFilesactually works as expected (although I'm able to overwrite it, lol). – fireeyedboy Sep 22 '11 at 15:13