Durum göstermeden sessizce dosyaları nasıl ayıklayabilirim?
Durum göstermeden sessizce dosyaları nasıl ayıklayabilirim?
Yanıtlar:
adam unzip:
-q perform operations quietly (-qq = even quieter). Ordinarily
unzip prints the names of the files it's extracting or testing,
the extraction methods, any file or zipfile comments that may be
stored in the archive, and possibly a summary when finished with
each archive. The -q[q] options suppress the printing of some
or all of these messages.
Gönderen unzip adam sayfası :
-q
işlemleri sessizce gerçekleştir ( -qq = daha sessiz). Normalde unzip , ayıkladığı veya test ettiği dosyaların adlarını, ayıklama yöntemlerini, arşivde saklanabilecek herhangi bir dosya veya zipf dosyası yorumunu ve her arşivle işiniz bittiğinde bir özeti yazdırır. -Q [ q ] seçenekleri bu mesajların bazılarını veya tümünü basılmasını bastırmak.
Öyleyse unzip -qq yourfile.zip
öyle.
PHP'nin bunun için bir uzantısı var
http://php.net/manual/en/book.zip.php
<?php
$zip = new ZipArchive;
if ($zip->open('test.zip') === TRUE) {
$zip->extractTo('/my/destination/dir/');
$zip->close();
echo 'ok';
} else {
echo 'failed';
}
?>