
1. ZIP파일에 오디오 코멘트를 추가하는 방법은 다음과 같습니다.
#hostingforum.kr
php
$zip = new ZipArchive();
$zip->open('example.zip', ZipArchive::CREATE);
$zip->setCommentIndex('오디오 코멘트');
$zip->close();
2. ZIP파일에 메타데이터를 추가하는 방법은 다음과 같습니다.
#hostingforum.kr
php
$zip = new ZipArchive();
$zip->open('example.zip', ZipArchive::CREATE);
$zip->setCommentIndex('메타데이터');
$zip->close();
3. ZIP파일에 정보를 추가하는 방법은 다음과 같습니다.
#hostingforum.kr
php
$zip = new ZipArchive();
$zip->open('example.zip', ZipArchive::CREATE);
$zip->setCommentIndex('정보');
$zip->close();
4. ZIP파일의 정보를 확인하는 방법은 다음과 같습니다.
#hostingforum.kr
php
$zip = new ZipArchive();
if ($zip->open('example.zip', ZipArchive::CHECK) === TRUE) {
echo $zip->getCommentIndex();
$zip->close();
}
5. ZIP파일을 열고 닫는 방법은 다음과 같습니다.
#hostingforum.kr
php
$zip = new ZipArchive();
if ($zip->open('example.zip', ZipArchive::CREATE) === TRUE) {
// 파일을 열었습니다.
$zip->close();
} else {
// 파일을 열지 못했습니다.
}
2025-04-05 12:27