File path: dist/twist/Core/Models/Archive/PclZip.model.php
Namespace: Twist\Core\Models\Archive
setArchiveComment
— Set a comment in the archive comment field using the PclZip Third party package, the comment can be seen when extracting the archive on commandline or using certain GUI tools.
Name | Description |
---|---|
$strComment | n/a |
void — No return information has been documented for this function.
<?php
//Set the variables for the example
$strComment = 'foo';
//Call the function setArchiveComment with the example vars
$resPclZip = new \Twist\Core\Models\Archive\PclZip();
$resPclZip -> setArchiveComment($strComment);