<전체 PHP Zip 파일 참조
정의 및 사용
zip_entry_read() 함수는 개방 우편 아카이브 항목에서 내용을 가져옵니다.
이 기능은 실패에 성공 항목 또는 FALSE의 내용을 반환합니다.
통사론
zip_entry_read(zip_entry,length)
매개 변수 | 기술 |
---|---|
zip_entry | 필요합니다. 우편 항목 리소스가 읽을 지정 (연 우편 항목 zip_read() ) |
length | 선택 과목. 바이트 수를 지정합니다 (uncompressed size) 반환합니다. 기본값은 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);
}
?>
코드의 출력은 우편 아카이브의 내용에 따라 달라집니다
Name: ziptest.txt
File Contents:
Hello World! This is a test for a the zip functions in PHP.
Name: htmlziptest.html
File Contents:
Hello World!
This is a test for a the zip functions in PHP.
<전체 PHP Zip 파일 참조