ZipArchive::addFromString
Add a file to a ZIP archive using its contents
&reftitle.description;
boolZipArchive::addFromString
stringlocalname
stringcontents
Add a file to a ZIP archive using its contents.
&reftitle.parameters;
localname
The name of the entry to create.
contents
The contents to use to create the entry. It is used in a binary
safe mode.
&reftitle.returnvalues;
&return.success;
&reftitle.examples;
Add an entry to a new archive
open('test.zip', ZipArchive::CREATE);
if ($res === TRUE) {
$zip->addFromString('test.txt', 'file content goes here');
$zip->close();
echo 'ok';
} else {
echo 'failed';
}
?>
]]>
Add file to a directory inside an archive
open('test.zip') === TRUE) {
$zip->addFromString('dir/test.txt', 'file content goes here');
$zip->close();
echo 'ok';
} else {
echo 'failed';
}
?>
]]>