PHP의 ZipArchive 메소드는 파일, 새 디렉토리를 추가하고 PHP에서 zip을 읽을 수 있는 데 사용됩니다. ZipArchive는 메서드가 아닌 클래스입니다. ziparchive에는 여러 가지 방법이 포함되어 있습니다. 이를 사용하여 PHP에서 zip에 대한 다양한 작업을 수행할 수 있습니다. ZipArchive 메소드는 새 파일 추가, 새 디렉토리 추가, 아카이브 닫기, ziparchive 콘텐츠 추출, PHP에서 ziparchive 열기 등 여러 작업을 수행할 수 있습니다. 다음 섹션에서는 PHP에서 ziparchive 메소드를 사용하는 방법을 자세히 살펴보겠습니다.
광고 이 카테고리에서 인기 있는 강좌 HIVE - 전문 분야 | 7개 코스 시리즈무료 소프트웨어 개발 과정 시작
웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등
이제 PHP에서 ziparchive의 여러 구문에 대해 논의하겠습니다. 앞서 말했듯이 PHP에는 ziparchive와 같은 방법이 없습니다. 이는 zip에 액세스하고 zip을 읽을 수 있는 여러 ziparchive 메서드가 내부에 포함된 클래스입니다. 아래에서 메서드를 더 잘 이해하기 위해 몇 가지 구문을 살펴보겠습니다.
1. ziparchive를 열려면: 다음은 구문입니다
ziparchive->open('your_file_name');
보시다시피 열려고 하는 파일 이름만 전달하면 됩니다. 또한 ziparchive 인스턴스를 사용하여 이러한 메서드를 호출할 수 있습니다.
2. 파일을 닫으려면: 다음은 구문입니다
ziparchive->close();
보시다시피, PHP에서 모든 파일을 닫으려면 ziparchive 인스턴스에서 close 메소드를 호출하기만 하면 됩니다.
아시다시피 ziparchive 메소드는 PHP에서 zip을 읽는 데 사용된다는 것을 알고 있지만 메소드가 아닌 클래스 대신 ziparchive에 ziparchive에 대한 작업을 수행하는 데 사용할 수 있는 여러 메소드가 포함되어 있습니다. 따라서 ziparchive를 처리하기 위해 PHP에서 ziparchive 클래스를 사용합니다. 어떤 메소드를 사용하려면 ziparchive 클래스의 인스턴스를 생성해야 하는데 이를 사용하면 어떤 메소드든 쉽게 호출할 수 있습니다. 파일 열기와 같은 ziparchive 인스턴스를 사용하여 모든 작업을 수행할 수 있습니다. 파일 닫기, 새 파일 생성, 새 디렉터리 생성, ziparchive 콘텐츠 읽기 등을 수행합니다.
PHP에서 사용하기 위한 각 방법을 자세히 논의해 보겠습니다.
To use this all this method, we need to have a ziparchive instance created in our program. After that, only we can call this method to perform any operations on the zip archive in PHP. Let’s see how to create a ziparchive instance in PHP see below;
Example:
$myzip = new ZipArchive();
This is s sample for beginners to use ziparchive in php; we will see some examples in the next section to better understand the ziparchive method in PHP.
In this example, we create one file inside the zip archive; after this, we are closing this file. A sample program for beginners to understand this better.
Code:
<?php echo 'demo for ziparchive method in PHP !!!'; $zip = new ZipArchive; echo 'opening zip file !!'; if ($zip->open('https://cdn.educba.com/path/mydem.zip') === TRUE) { //adding file $zip->addFile('https://cdn.educba.com/path/myzip/demofile.txt', 'mynewdemofile.txt'); //closing file $zip->close(); echo 'file added successfully !!'; echo 'file close successfully !!' } else { echo 'error occured while cerating the file.' echo 'process failed !!' echo 'failed while creation !!'; } ?>
Output:
By using ziparchive methods, we can perform many operations on the ziparchive. This is the class with so many different methods available. With the help of this, we can create a file, directory, delete, open, and close our ziparchive in PHP.
위 내용은 PHP 압축 아카이브의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!