0

它是我的代码.. 任何人都可以帮助我吗?:(

public function btnZipDownload_Click($zip, $key, $base) {

    foreach($this->GetAllControls() as $objControl) {
        if (substr($objControl->ControlId, 0, 11) == 'chkSelected') {
                $zip = new ZipArchive;
                if ($zip->open('somefile.zip') === TRUE) {
                    for ($i = 0; $i < $zip->numFiles; $i++) {
                        if ($objControl->$couples) {
                            $couples[]=array('filename'=>'./somenewfile.ext','localname'=>$zip->getNameIndex($i));
                        }
                    }
                }
                foreach ($couples as $couple) $zip->addFile($couple['filename'],$couple['localname']);
                $zip->close();
            }
        }

    }
}
4

1 回答 1

0

I think you want

$objControl->Checked

instead of

$objControl->$couples

于 2015-06-20T01:31:20.627 回答