<전체 PHP Zip 파일 참조
정의 및 사용
zip_entry_name() 함수는 우편 아카이브 항목의 이름을 반환합니다.
통사론
zip_entry_name(zip_entry)
매개 변수 | 기술 |
---|---|
zip_entry | 필요합니다. 우편 항목 리소스가 읽을 지정 (연 우편 항목 zip_read() ) |
예
<?php
$zip = zip_open("test.zip");
if ($zip)
{
while ($zip_entry = zip_read($zip))
{
echo "Name: " . zip_entry_name($zip_entry) . "<br />";
}
zip_close($zip);
}
?>
코드의 출력은 위의 것입니다 :
Name: ziptest.txt
Name: htmlziptest.html
<전체 PHP Zip 파일 참조