zip_entry_read() 函數從開啟的zip 檔案中取得內容。
如果成功,則函數則傳回項目的內容。如果失敗,則傳回FALSE。
zip_entry_read(zip_entry,length)
參數 | 描述 |
---|---|
zip_entry | 必需。規定要讀取的zip 專案資源(由zip_read() 開啟的zip 專案)。 |
length | 可選。規定傳回的位元組數(未壓縮尺寸)。預設是1024。 |
<?php$zip = zip_open("test.zip");if ($zip) { while ($zip_entry = zip_read($zip)) { echo "<p>"; echo "Name: " . zip_entry_name($zip_entry ) . "<br />"; if (zip_entry_open($zip, $zip_entry)) { echo "File Contents:<br/>"; $contents = zip_entry_read($zip_entry); echo "$contents<br />"; zip_entry_close($zip_entry); } echo "</p>"; }zip_close($zip);} ?>
程式碼的輸出取決於zip 檔案的內容:
Name: ziptest.txtFile Contents:Hello World! This is a test for a the zip functions in PHP.Name: htmlziptest.htmlFile Contents: Hello World! This is a test for a the zip functions in PHP.