TECH I.S.

PHP zip_entry_compressionmethod()関数

❮ PHP zip リファレンス

ZIPファイル アーカイブを開き、ディレクトリエントリの名前と圧縮方法を取得します。

<?php $zip = zip_open("test.zip"); if ($zip) {   while ($zip_entry = zip_read($zip)) {     echo "<p>";     // Get name of directory entry     echo "Name: " . zip_entry_name($zip_entry) . "<br>";     // Get compression method     echo "Compression method: " . zip_entry_compressionmethod($zip_entry);     echo "</p>";   }   zip_close($zip); } ?>

コードの出力は、ZIPアーカイブの内容によって異なります。

Name: ziptest.txt Compression method: deflated Name: htmlziptest.html Compression method: deflated


定義と使用法

zip_entry_compressionmethod()関数は、ZIPディレクトリエントリの圧縮方法を返します。

構文

<div>zip_entry_compressionmethod(<em>zip_entry</em>)</div>

パラメータ値

パラメータ

説明

zip_entry Required zip_read()によって返されるZIPディレクトリエントリを指定します。

Technical Details

Return Value: 圧縮方法

PHP バージョン:

4.1.0+

❮ PHP zip リファレンス


プログラミング学習を加速させる

プログラミングをプロの講師に教えてもらいませんか。

テックアイエスのプログラミングスクールは初心者も大歓迎です。年齢制限もありません。転職・副業に強く、挫折させない手厚いサポートで稼ぐ力を身につけましょう!

スクールの詳細