I just want to know what you would use to call it. Are files that are uploaded stored in files? Like, when you move text around, it's easy because you store it in a variable, but how would you move files so that when you're uploading something, you can use $_FILES as the source file or something?
<?php
include('pclzip.lib.php');
$archive = new PclZip('1.zip');
$list = $archive->extract(PCLZIP_OPT_PATH, "test/");
if ($list == 0) {
die ("Unrecoverable error '".$archive->errorName(true)."'");
}
?>
How would I move the extracted files somewhere else?