TwistPHP Documentation

load

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

loadLoad in an existing archive using the PclZip Third party package and store it as a resource ready to be manipulated/extracted.

Parameters

Name Type Description
$strZipArchivestringn/a

Return Values

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

Example

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

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