TwistPHP Documentation

extract

File path: dist/twist/Core/Models/Archive/PclZip.model.php
Namespace: Twist\Core\Models\Archive
Extends:

extractExtract the files from the archive resource using the PclZip Third party package.

Parameters

Name Type Description
$strExtractPathstringn/a

Return Values

void — No return information has been documented for this function.

Example

<?php
//Set the variables for the example
$strExtractPath 'foo';

//Call the function extract with the example vars
$resPclZip = new \Twist\Core\Models\Archive\PclZip();
$resPclZip -> extract($strExtractPath);