Jump to content

zip a file


dreamwest

Recommended Posts

no im really that crap at finding stuff on there

 

I cant understand how i can get a plain file added to an archive.

 

This also get me a fatal error:

Fatal error: Class 'ZipArchive' not found in

 

$zip = new ZipArchive;
if ($zip->open('test.zip') === TRUE) {
    $zip->addFile('/path/to/index.txt', 'newname.txt');
    $zip->close();
    echo 'ok';
} else {
    echo 'failed';
}

 

 

Link to comment
Share on other sites

But the function reference is broken into sections. eg; zip obviously falls under 'Compression and Archive Extensions'.

 

On top of that, if you know the name of a function you want to look up you can simply append it to the address. eg; http://php.net/functionname

 

The first thing I do when learning any programming language is learn how the manual works.

 

Thats where my problem is, i dont know what im searching for to begin with.

 

For this i searched for "Create zip file" results were http://au.php.net/manual-lookup.php?pattern=create+zip+file

and a few other search queries

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.