05-26-2021, 07:53 AM
Hello,
concerning the unzip fiel on the ftp server a PHP script called :
can be used for example :
So can I launch a PHP script from your application please ?
regards
concerning the unzip fiel on the ftp server a PHP script called :
Code:
extractor.php
Code:
$zip = new ZipArchive;
if ($zip->open('my_zip.zip') === TRUE) {
$zip->extractTo('/path/to/my/zip');
$zip->close();
echo 'ok';
}
So can I launch a PHP script from your application please ?
regards