PHP Function List
ziparchive-open doesn't exist. Closest matches:
- ziparchive
- imap_reopen
- zip_open
- printer_open
- proc_open
- rararchive
- zip_entry_open
- apache_setenv
- popen
- zip_close
- apache_getenv
- imap_open
- apache_get_version
- phpversion
- pfsockopen
- dbase_open
- gzopen
- bzopen
- ibase_blob_open
- apache_note
Site Search Results
-
to anyone getting an error ZIPARCHIVE::ER_READ = 5, when doing $zip->open($zipfile) with a ZIP file containing a total of more then (around) 800 files (even when they are in sub-directories). possibly related bugs 40873, 8714:
-
ZipArchive::extractTo - Manual$zip = new ZipArchive; if ($zip-> open ($filename) === true) { echo "Generating TEXT file."; for($i = 0; $i < $zip-> numFiles; $i ++) { $entry = $zip-> getNameIndex ($i); if(preg_match ('#\.(txt)$#i', $entry))
-
* opens a stream to a ZIP archive file. calls the ZipArchive::open() internally. * overwrites ZipArchive::open() to add the archiveFileName functionality. * * @param string $fileName * @param int $flags
-
ZipArchive::open — Open a ZIP file archive ZipArchive::renameIndex — Renames an entry defined by its index ZipArchive::renameName — Renames an entry defined by its name ZipArchive::setArchiveComment — Set the comment of a ZIP archive
-
ZipArchive::addEmptyDir - Manualif ($this-> zip-> open ($file, ZIPARCHIVE:: CREATE)!== TRUE) { throw new Exception ("cannot open <$file>\n"); } $folder = substr ($folder, - 1) == '/' ? substr ($folder, 0, strlen ($folder)-1) : $folder;
-
$za = new ZipArchive (); $za-> open ('test_with_comment.zip'); print_r ($za); var_dump ($za); echo "numFiles: " . $za-> numFiles . "\n"; echo "status: " . $za-> status . "\n"; echo "statusSys: " . $za-> statusSys . "\n";
-
class MyZipArchive extends ZipArchive { /** * * Adds a directory recursively. * * @param string $filename ... if ($zip = zip_open ($src_file)) { if ($zip) { $splitter = ($create_zip_name_dir === true) ?
-
If you have created a zip file and added a file to it without error, yet the ZipArchive::close call fails (with ER_TMPOPEN: "Failure to create temporary file") and the zip file is not created, check to see if your ZipArchive::open call specifies a pathname ...
-
$zip = new ZipArchive; if ($zip-> open ('test.zip') === TRUE) { $zip-> addFile ('/path/to/index.txt', 'newname.txt'); $zip-> close (); echo 'ok';} else { echo 'failed';}?>
-
ZipArchive::setCommentIndex - Manual$zip = new ZipArchive; $res = $zip-> open ('test.zip'); if ($res === TRUE) { $zip-> setCommentIndex (2, 'new entry comment'); $zip-> close (); echo 'ok';} else { echo 'failed';}?>

Other forms of search
To search the string "ziparchive-open" using other options, try searching:
- Only the documentation
- Only this mirror
- The entire php.net domain
- pear.php.net
- pecl.php.net
- The Bug DB
- php-general mailing list
- Internals mailing list
- Documentation mailing list
For a quick overview over all documented PHP functions, click here.
